14 lines
354 B
C
14 lines
354 B
C
|
#pragma once
|
||
|
#include "stdtypes.h"
|
||
|
|
||
|
class pjutil
|
||
|
{
|
||
|
public:
|
||
|
static void Sleep(uint32_t timeout);
|
||
|
static bool TerminatedExistingExe();
|
||
|
|
||
|
private:
|
||
|
pjutil(void); // Disable default constructor
|
||
|
pjutil(const pjutil&); // Disable copy constructor
|
||
|
pjutil& operator=(const pjutil&); // Disable assignment
|
||
|
};
|