project64/Source/Common/Util.h

15 lines
235 B
C
Raw Normal View History

2015-11-06 11:55:21 +00:00
#pragma once
2021-04-12 06:34:26 +00:00
#include <stdint.h>
2015-11-06 11:55:21 +00:00
class pjutil
{
public:
static void Sleep(uint32_t timeout);
static bool TerminatedExistingExe();
private:
pjutil(void);
pjutil(const pjutil&);
pjutil& operator=(const pjutil&);
2017-02-05 01:02:53 +00:00
};