Remove an unused global variable and commented out code

This commit is contained in:
Martin Storsjö 2014-01-28 10:54:11 +02:00
parent 8a0bc0a8b9
commit 5c5dcfb14c

View File

@ -34,16 +34,10 @@
/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point
HANDLE g_hInstDll;
BOOL WINAPI DllEntryPoint (HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) {
g_hInstDll = hInstance;
if (DLL_PROCESS_ATTACH == dwReason) {
DisableThreadLibraryCalls (hInstance);
}
// else if (DLL_PROCESS_DETACH == dwReason)
// {
//
// }
return TRUE;
}
}