mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
shdocvw: Remove unused variable.
This commit is contained in:
parent
925a4411e8
commit
acb1d678a9
@ -50,8 +50,6 @@ extern LONG SHDOCVW_refCount DECLSPEC_HIDDEN;
|
||||
static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
|
||||
static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
|
||||
|
||||
extern HINSTANCE shdocvw_hinstance DECLSPEC_HIDDEN;
|
||||
|
||||
|
||||
/* memory allocation functions */
|
||||
|
||||
|
@ -41,7 +41,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
||||
|
||||
LONG SHDOCVW_refCount = 0;
|
||||
|
||||
HINSTANCE shdocvw_hinstance = 0;
|
||||
static HMODULE SHDOCVW_hshell32 = 0;
|
||||
static HINSTANCE ieframe_instance;
|
||||
|
||||
@ -148,7 +147,6 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad)
|
||||
switch (fdwReason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
shdocvw_hinstance = hinst;
|
||||
break;
|
||||
case DLL_PROCESS_DETACH:
|
||||
if (SHDOCVW_hshell32) FreeLibrary(SHDOCVW_hshell32);
|
||||
|
Loading…
Reference in New Issue
Block a user