diff options
-rw-r--r-- | stormlib_dll/DllMain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stormlib_dll/DllMain.c b/stormlib_dll/DllMain.c index cbfa84a..98eb003 100644 --- a/stormlib_dll/DllMain.c +++ b/stormlib_dll/DllMain.c @@ -14,11 +14,11 @@ //----------------------------------------------------------------------------- // DllMain -DWORD WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID lpReserved) +BOOL WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID lpReserved) { UNREFERENCED_PARAMETER(hInst); UNREFERENCED_PARAMETER(dwReason); UNREFERENCED_PARAMETER(lpReserved); - return TRUE; + return TRUE; } |