Commit 670c6214 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 1d0fe866
......@@ -33,17 +33,14 @@ BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
switch (fdwReason) {
case DLL_PROCESS_ATTACH:
{
DisableThreadLibraryCalls(hinstDLL);
NetBIOSInit();
NetBTInit();
break;
}
case DLL_PROCESS_DETACH:
{
if (lpvReserved) break;
NetBIOSShutdown();
break;
}
}
return TRUE;
......
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