mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
shdocvw: Remove unused variable.
This commit is contained in:
parent
925a4411e8
commit
acb1d678a9
2 changed files with 0 additions and 4 deletions
|
@ -50,8 +50,6 @@ extern LONG SHDOCVW_refCount DECLSPEC_HIDDEN;
|
||||||
static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
|
static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
|
||||||
static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
|
static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
|
||||||
|
|
||||||
extern HINSTANCE shdocvw_hinstance DECLSPEC_HIDDEN;
|
|
||||||
|
|
||||||
|
|
||||||
/* memory allocation functions */
|
/* memory allocation functions */
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
||||||
|
|
||||||
LONG SHDOCVW_refCount = 0;
|
LONG SHDOCVW_refCount = 0;
|
||||||
|
|
||||||
HINSTANCE shdocvw_hinstance = 0;
|
|
||||||
static HMODULE SHDOCVW_hshell32 = 0;
|
static HMODULE SHDOCVW_hshell32 = 0;
|
||||||
static HINSTANCE ieframe_instance;
|
static HINSTANCE ieframe_instance;
|
||||||
|
|
||||||
|
@ -148,7 +147,6 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad)
|
||||||
switch (fdwReason)
|
switch (fdwReason)
|
||||||
{
|
{
|
||||||
case DLL_PROCESS_ATTACH:
|
case DLL_PROCESS_ATTACH:
|
||||||
shdocvw_hinstance = hinst;
|
|
||||||
break;
|
break;
|
||||||
case DLL_PROCESS_DETACH:
|
case DLL_PROCESS_DETACH:
|
||||||
if (SHDOCVW_hshell32) FreeLibrary(SHDOCVW_hshell32);
|
if (SHDOCVW_hshell32) FreeLibrary(SHDOCVW_hshell32);
|
||||||
|
|
Loading…
Reference in a new issue