Browse Source

don't need to test _WINDOWS if only being used on Windows

la-knuth
Marcus Cuda 17 years ago
parent
commit
1734aec782
  1. 16
      src/NativeWrappers/Common/WindowsDLL.cpp

16
src/NativeWrappers/Common/WindowsDLL.cpp

@ -1,10 +1,8 @@
#ifdef _WINDOWS
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN
#endif
#include "windows.h"
BOOL APIENTRY DllMain( HANDLE, DWORD, LPVOID ){
return TRUE;
}
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN
#endif
#include "windows.h"
BOOL APIENTRY DllMain( HANDLE, DWORD, LPVOID ){
return TRUE;
}

Loading…
Cancel
Save