Update Util.h

This commit is contained in:
Frank-74 2017-02-05 01:02:53 +00:00 committed by GitHub
parent 8847751a0f
commit ce9eaf601b
1 changed files with 1 additions and 4 deletions

View File

@ -9,9 +9,6 @@ public:
static DynLibHandle DynLibOpen(const char *pccLibraryPath, bool ShowErrors = true);
static void * DynLibGetProc(DynLibHandle LibHandle, const char * ProcedureName);
static void DynLibClose(DynLibHandle LibHandle);
#ifdef _WIN32
static void DynLibCallDllMain(void);
#endif
static void Sleep(uint32_t timeout);
static bool TerminatedExistingExe();
@ -19,4 +16,4 @@ private:
pjutil(void); // Disable default constructor
pjutil(const pjutil&); // Disable copy constructor
pjutil& operator=(const pjutil&); // Disable assignment
};
};