Commit ffb2cae6 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

wtsapi32: Remove unused variable.

parent 960f0595
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(wtsapi); WINE_DEFAULT_DEBUG_CHANNEL(wtsapi);
static HMODULE WTSAPI32_hModule;
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{ {
...@@ -35,7 +34,6 @@ BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) ...@@ -35,7 +34,6 @@ BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
case DLL_PROCESS_ATTACH: case DLL_PROCESS_ATTACH:
{ {
DisableThreadLibraryCalls(hinstDLL); DisableThreadLibraryCalls(hinstDLL);
WTSAPI32_hModule = hinstDLL;
break; break;
} }
case DLL_PROCESS_DETACH: case DLL_PROCESS_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