Update Util.h
This commit is contained in:
parent
8847751a0f
commit
ce9eaf601b
|
@ -9,9 +9,6 @@ public:
|
||||||
static DynLibHandle DynLibOpen(const char *pccLibraryPath, bool ShowErrors = true);
|
static DynLibHandle DynLibOpen(const char *pccLibraryPath, bool ShowErrors = true);
|
||||||
static void * DynLibGetProc(DynLibHandle LibHandle, const char * ProcedureName);
|
static void * DynLibGetProc(DynLibHandle LibHandle, const char * ProcedureName);
|
||||||
static void DynLibClose(DynLibHandle LibHandle);
|
static void DynLibClose(DynLibHandle LibHandle);
|
||||||
#ifdef _WIN32
|
|
||||||
static void DynLibCallDllMain(void);
|
|
||||||
#endif
|
|
||||||
static void Sleep(uint32_t timeout);
|
static void Sleep(uint32_t timeout);
|
||||||
static bool TerminatedExistingExe();
|
static bool TerminatedExistingExe();
|
||||||
|
|
||||||
|
@ -19,4 +16,4 @@ private:
|
||||||
pjutil(void); // Disable default constructor
|
pjutil(void); // Disable default constructor
|
||||||
pjutil(const pjutil&); // Disable copy constructor
|
pjutil(const pjutil&); // Disable copy constructor
|
||||||
pjutil& operator=(const pjutil&); // Disable assignment
|
pjutil& operator=(const pjutil&); // Disable assignment
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue