From 89b9fd4149473636282f5f7a9889d535fbe007f4 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Sun, 28 Sep 2008 23:50:05 +0000 Subject: [PATCH] #include <windows.h> Apparently, I can't just #include <Winbase.h> for LoadLibrary() --- src/xpdev/xp_dl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpdev/xp_dl.h b/src/xpdev/xp_dl.h index e285550da5..4469cbbc3e 100644 --- a/src/xpdev/xp_dl.h +++ b/src/xpdev/xp_dl.h @@ -12,7 +12,7 @@ #define xp_dlsym(handle, name) dlsym(handle, #name) #define xp_dlclose(handle) dlclose(handle) #elif defined(_WIN32) - #include <Winbase.h> + #include <Windows.h> typedef HMODULE WINAPI dll_handle; DLLEXPORT dll_handle DLLCALL xp_dlopen(const char **name, int mode, int major); -- GitLab