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

This commit is contained in:
Alexandre Julliard 2013-05-17 12:28:05 +02:00
parent 1d0fe8664e
commit 670c621414
1 changed files with 1 additions and 4 deletions

View File

@ -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;