msisys.ocx: Remove ununsed DllMain function.
This commit is contained in:
parent
0ef01edfd0
commit
cd556855ca
|
@ -34,50 +34,6 @@
|
|||
WINE_DEFAULT_DEBUG_CHANNEL(msisys);
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* MSISYS_InitProcess (internal)
|
||||
*/
|
||||
static BOOL MSISYS_InitProcess( void )
|
||||
{
|
||||
TRACE("()\n");
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MSISYS_UninitProcess (internal)
|
||||
*/
|
||||
static void MSISYS_UninitProcess( void )
|
||||
{
|
||||
TRACE("()\n");
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DllMain for MSISYS
|
||||
*/
|
||||
BOOL WINAPI DllMain(
|
||||
HINSTANCE hInstDLL,
|
||||
DWORD fdwReason,
|
||||
LPVOID lpvReserved )
|
||||
{
|
||||
TRACE("(%p,%d,%p)\n",hInstDLL,fdwReason,lpvReserved);
|
||||
|
||||
switch ( fdwReason )
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls(hInstDLL);
|
||||
if ( !MSISYS_InitProcess() )
|
||||
return FALSE;
|
||||
break;
|
||||
case DLL_PROCESS_DETACH:
|
||||
MSISYS_UninitProcess();
|
||||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* DllCanUnloadNow (MSISYS.@)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue