Menu

[r605]: / trunk / cppunit / src / cppunit / DllMain.cpp  Maximize  Restore  History

Download this file

21 lines (16 with data), 400 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#if defined(_WIN32) && defined(CPPUNIT_BUILD_DLL)
#define WIN32_LEAN_AND_MEAN
#define NOGDI
#define NOUSER
#define NOKERNEL
#define NOSOUND
#define BLENDFUNCTION void // for mingw & gcc
#include <windows.h>
BOOL APIENTRY
DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved )
{
return TRUE;
}
#endif // if defined(_WIN32) && defined(CPPUNIT_BUILD_DLL)
MongoDB Logo MongoDB