Commit 1d0fe866 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent d7ddcdfc
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment