2002-04-08 23:56:14 +00:00
|
|
|
/*
|
|
|
|
* Stub implementation of MSISYS.OCX to prevent MSINFO32.EXE from crashing.
|
|
|
|
*
|
2003-09-08 19:38:45 +00:00
|
|
|
* Copyright 2002 Mike McCormack for CodeWeavers
|
2002-04-08 23:56:14 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-04-08 23:56:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2002-04-08 23:56:14 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
2005-12-07 11:51:39 +00:00
|
|
|
#include "objbase.h"
|
2002-04-08 23:56:14 +00:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2002-11-04 23:53:41 +00:00
|
|
|
* DllMain for MSISYS
|
2002-04-08 23:56:14 +00:00
|
|
|
*/
|
2002-11-04 23:53:41 +00:00
|
|
|
BOOL WINAPI DllMain(
|
2002-04-08 23:56:14 +00:00
|
|
|
HINSTANCE hInstDLL,
|
|
|
|
DWORD fdwReason,
|
|
|
|
LPVOID lpvReserved )
|
|
|
|
{
|
2006-09-28 23:19:00 +00:00
|
|
|
TRACE("(%p,%d,%p)\n",hInstDLL,fdwReason,lpvReserved);
|
2002-04-08 23:56:14 +00:00
|
|
|
|
|
|
|
switch ( fdwReason )
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2003-06-30 20:53:48 +00:00
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
2002-04-08 23:56:14 +00:00
|
|
|
if ( !MSISYS_InitProcess() )
|
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
MSISYS_UninitProcess();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllCanUnloadNow (MSISYS.@)
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: S_FALSE
|
|
|
|
*/
|
2005-08-08 17:35:28 +00:00
|
|
|
HRESULT WINAPI DllCanUnloadNow(void)
|
2002-04-08 23:56:14 +00:00
|
|
|
{
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllGetClassObject (MSISYS.@)
|
|
|
|
*/
|
2005-08-08 17:35:28 +00:00
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID pclsid, const IID* piid, LPVOID *ppv)
|
2002-04-08 23:56:14 +00:00
|
|
|
{
|
|
|
|
FIXME("\n");
|
|
|
|
|
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllRegisterServer (MSISYS.@)
|
|
|
|
*/
|
|
|
|
|
2005-08-08 17:35:28 +00:00
|
|
|
HRESULT WINAPI DllRegisterServer( void )
|
2002-04-08 23:56:14 +00:00
|
|
|
{
|
|
|
|
FIXME( "(): stub\n" );
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllUnregisterServer (MSISYS.@)
|
|
|
|
*/
|
|
|
|
|
2005-08-08 17:35:28 +00:00
|
|
|
HRESULT WINAPI DllUnregisterServer( void )
|
2002-04-08 23:56:14 +00:00
|
|
|
{
|
|
|
|
FIXME( "(): stub\n" );
|
|
|
|
return E_FAIL;
|
|
|
|
}
|