mshtml: Don't bother to clean up at process exit.

This commit is contained in:
Alexandre Julliard 2013-05-17 12:27:20 +02:00
parent d7ddcdfca7
commit 1d0fe8664e
1 changed files with 2 additions and 1 deletions

View File

@ -164,13 +164,14 @@ HDC get_display_dc(void)
return display_dc;
}
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID reserved)
{
switch(fdwReason) {
case DLL_PROCESS_ATTACH:
hInst = hInstDLL;
break;
case DLL_PROCESS_DETACH:
if (reserved) break;
process_detach();
break;
case DLL_THREAD_DETACH: