diff --git a/src/xpdev/xp_dl.h b/src/xpdev/xp_dl.h
index e285550da5d123f62d27d98d3f13cbe2ca0afdee..4469cbbc3ef109852a15930b31e5970740dd88cd 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);