1 #include <oscalls.h> 2 #define _DECL_DLLMAIN 3 #include <process.h> 4 DllMain(HANDLE __UNUSED_PARAM (hDllHandle),DWORD __UNUSED_PARAM (dwReason),LPVOID __UNUSED_PARAM (lpreserved))5BOOL WINAPI DllMain (HANDLE __UNUSED_PARAM(hDllHandle), 6 DWORD __UNUSED_PARAM(dwReason), 7 LPVOID __UNUSED_PARAM(lpreserved)) 8 { 9 return TRUE; 10 } 11