wtsapi32: Remove an unnecessary DllMain entry point.

This commit is contained in:
Alexandre Julliard 2013-02-14 21:37:37 +01:00
parent 6af3e91cf8
commit 102f5085ef
1 changed files with 0 additions and 19 deletions

View File

@ -26,25 +26,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(wtsapi);
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
switch (fdwReason) {
case DLL_PROCESS_ATTACH:
{
DisableThreadLibraryCalls(hinstDLL);
break;
}
case DLL_PROCESS_DETACH:
{
break;
}
}
return TRUE;
}
/************************************************************
* WTSCloseServer (WTSAPI32.@)
*/