compilation fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1764 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
3aa0e8fa2b
commit
90022ddc1e
@ -56,7 +56,14 @@
|
||||
return (void *)0;
|
||||
}
|
||||
#elif defined(__WINDOWS__)
|
||||
#define wxDllOpen(lib) ::LoadLibrary(lib)
|
||||
#include <windows.h>
|
||||
|
||||
// using LoadLibraryEx under Win32 to avoid name clash with LoadLibrary
|
||||
#ifdef __WIN32__
|
||||
#define wxDllOpen(lib) ::LoadLibraryEx(lib, 0, 0)
|
||||
#else // Win16
|
||||
#define wxDllOpen(lib) ::LoadLibrary(lib)
|
||||
#endif // Win32/16
|
||||
#define wxDllGetSymbol(handle, name) ::GetProcAddress(handle, name)
|
||||
#define wxDllClose ::FreeLibrary
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user