Commit cd556855 authored by Alexandre Julliard's avatar Alexandre Julliard

msisys.ocx: Remove ununsed DllMain function.

parent 0ef01edf
......@@ -35,50 +35,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.@)
*
* RETURNS
......
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