From ce9eaf601b0c32bf20fe290067371996fc3bda7b Mon Sep 17 00:00:00 2001 From: Frank-74 Date: Sun, 5 Feb 2017 01:02:53 +0000 Subject: [PATCH] Update Util.h --- Source/Common/Util.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Source/Common/Util.h b/Source/Common/Util.h index eaaf95505..477f25c6c 100644 --- a/Source/Common/Util.h +++ b/Source/Common/Util.h @@ -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 -}; \ No newline at end of file +};