inkobj: Remove unused variable.
This commit is contained in:
parent
2d50946e06
commit
16b43ef072
|
@ -20,7 +20,6 @@
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(inkobj);
|
WINE_DEFAULT_DEBUG_CHANNEL(inkobj);
|
||||||
|
|
||||||
static LONG INKOBJ_refCount;
|
static LONG INKOBJ_refCount;
|
||||||
static HINSTANCE INKOBJ_hInstance;
|
|
||||||
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
* DllMain (INKOBJ.init)
|
* DllMain (INKOBJ.init)
|
||||||
|
@ -35,7 +34,6 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
|
||||||
return FALSE; /* prefer native version */
|
return FALSE; /* prefer native version */
|
||||||
case DLL_PROCESS_ATTACH:
|
case DLL_PROCESS_ATTACH:
|
||||||
DisableThreadLibraryCalls( hinst );
|
DisableThreadLibraryCalls( hinst );
|
||||||
INKOBJ_hInstance = hinst;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in New Issue