summaryrefslogtreecommitdiff
path: root/src/os/windows/win32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/windows/win32.cpp')
-rw-r--r--src/os/windows/win32.cpp27
1 files changed, 2 insertions, 25 deletions
diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp
index 4478caa65..788021008 100644
--- a/src/os/windows/win32.cpp
+++ b/src/os/windows/win32.cpp
@@ -50,30 +50,6 @@ bool MyShowCursor(bool show, bool toggle)
return !show;
}
-/**
- * Helper function needed by dynamically loading libraries
- */
-bool LoadLibraryList(Function proc[], const char *dll)
-{
- while (*dll != '\0') {
- HMODULE lib;
- lib = LoadLibrary(OTTD2FS(dll).c_str());
-
- if (lib == nullptr) return false;
- for (;;) {
- FARPROC p;
-
- while (*dll++ != '\0') { /* Nothing */ }
- if (*dll == '\0') break;
- p = GetProcAddress(lib, dll);
- if (p == nullptr) return false;
- *proc++ = (Function)p;
- }
- dll++;
- }
- return true;
-}
-
void ShowOSErrorBox(const char *buf, bool system)
{
MyShowCursor(true);
@@ -679,7 +655,8 @@ int OTTDStringCompare(const char *s1, const char *s2)
#endif
if (first_time) {
- _CompareStringEx = (PFNCOMPARESTRINGEX)GetProcAddress(GetModuleHandle(L"Kernel32"), "CompareStringEx");
+ static DllLoader _kernel32(L"Kernel32.dll");
+ _CompareStringEx = _kernel32.GetProcAddress("CompareStringEx");
first_time = false;
}