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 +};