Merge to trunk head (r46631)
[reactos.git] / lib / 3rdparty / mingw / dllmain.c
1 #include <oscalls.h>
2 #define _DECL_DLLMAIN
3 #include <process.h>
4
5 BOOL WINAPI DllMain (HANDLE hDllHandle __attribute__ ((__unused__)),
6 DWORD dwReason __attribute__ ((__unused__)),
7 LPVOID lpreserved __attribute__ ((__unused__)))
8 {
9 return TRUE;
10 }