Module: wine Branch: master Commit: cd556855ca82a36fffe9a72d123a14794e9f4fb6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cd556855ca82a36fffe9a72d12...
Author: Alexandre Julliard julliard@winehq.org Date: Wed May 15 10:35:19 2013 +0200
msisys.ocx: Remove ununsed DllMain function.
---
dlls/msisys.ocx/msisys.c | 44 -------------------------------------------- 1 files changed, 0 insertions(+), 44 deletions(-)
diff --git a/dlls/msisys.ocx/msisys.c b/dlls/msisys.ocx/msisys.c index 056699e..e4b0df0 100644 --- a/dlls/msisys.ocx/msisys.c +++ b/dlls/msisys.ocx/msisys.c @@ -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