2003-07-22 00:10:14 +02:00
|
|
|
/* DirectMusicLoader Main
|
|
|
|
*
|
2004-01-20 01:21:40 +01:00
|
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
2003-07-22 00:10:14 +02:00
|
|
|
*
|
2007-05-30 12:54:07 +02:00
|
|
|
* This program 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.
|
2003-07-22 00:10:14 +02:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-05-30 12:54:07 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-07-22 00:10:14 +02:00
|
|
|
*
|
2007-05-30 12:54:07 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-22 00:10:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dmloader_private.h"
|
2010-12-03 12:36:54 +01:00
|
|
|
#include "rpcproxy.h"
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmloader);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2010-12-03 12:36:54 +01:00
|
|
|
static HINSTANCE instance;
|
2011-08-02 10:28:16 +02:00
|
|
|
LONG module_ref = 0;
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2011-08-02 10:25:52 +02:00
|
|
|
typedef struct {
|
|
|
|
IClassFactory IClassFactory_iface;
|
|
|
|
HRESULT WINAPI (*fnCreateInstance)(REFIID riid, void **ppv, IUnknown *pUnkOuter);
|
|
|
|
} IClassFactoryImpl;
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* IClassFactory implementation
|
|
|
|
*/
|
|
|
|
static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
if (ppv == NULL)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
if (IsEqualGUID(&IID_IUnknown, riid))
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
|
|
|
|
else if (IsEqualGUID(&IID_IClassFactory, riid))
|
|
|
|
TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
|
|
|
|
else {
|
|
|
|
FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
|
|
|
|
*ppv = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppv = iface;
|
|
|
|
IClassFactory_AddRef(iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
|
|
|
|
{
|
2011-08-02 10:28:16 +02:00
|
|
|
lock_module();
|
2011-08-02 10:25:52 +02:00
|
|
|
|
|
|
|
return 2; /* non-heap based object */
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
|
|
|
|
{
|
2011-08-02 10:28:16 +02:00
|
|
|
unlock_module();
|
2011-08-02 10:25:52 +02:00
|
|
|
|
|
|
|
return 1; /* non-heap based object */
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
|
|
|
|
|
|
|
TRACE ("(%p, %s, %p)\n", pUnkOuter, debugstr_dmguid(riid), ppv);
|
|
|
|
|
|
|
|
return This->fnCreateInstance(riid, ppv, pUnkOuter);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
|
|
|
|
{
|
|
|
|
TRACE("(%d)\n", dolock);
|
|
|
|
|
|
|
|
if (dolock)
|
2011-08-02 10:28:16 +02:00
|
|
|
lock_module();
|
2011-08-02 10:25:52 +02:00
|
|
|
else
|
2011-08-02 10:28:16 +02:00
|
|
|
unlock_module();
|
2011-08-02 10:25:52 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IClassFactoryVtbl classfactory_vtbl = {
|
|
|
|
ClassFactory_QueryInterface,
|
|
|
|
ClassFactory_AddRef,
|
|
|
|
ClassFactory_Release,
|
|
|
|
ClassFactory_CreateInstance,
|
|
|
|
ClassFactory_LockServer
|
|
|
|
};
|
|
|
|
|
|
|
|
static IClassFactoryImpl dm_loader_CF = {{&classfactory_vtbl}, DMUSIC_CreateDirectMusicLoaderImpl};
|
|
|
|
static IClassFactoryImpl dm_container_CF = {{&classfactory_vtbl},
|
|
|
|
DMUSIC_CreateDirectMusicContainerImpl};
|
|
|
|
|
2003-07-22 00:10:14 +02:00
|
|
|
/******************************************************************
|
|
|
|
* DllMain
|
|
|
|
*/
|
2004-05-13 02:00:22 +02:00
|
|
|
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
|
2004-01-20 01:21:40 +01:00
|
|
|
if (fdwReason == DLL_PROCESS_ATTACH) {
|
2010-12-03 12:36:54 +01:00
|
|
|
instance = hinstDLL;
|
2004-05-13 02:00:22 +02:00
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
2005-08-10 16:45:58 +02:00
|
|
|
* DllCanUnloadNow (DMLOADER.@)
|
2003-07-22 00:10:14 +02:00
|
|
|
*/
|
2005-08-08 19:35:28 +02:00
|
|
|
HRESULT WINAPI DllCanUnloadNow (void)
|
|
|
|
{
|
2011-08-02 10:28:16 +02:00
|
|
|
TRACE("() ref=%d\n", module_ref);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2011-08-02 10:28:16 +02:00
|
|
|
return module_ref ? S_FALSE : S_OK;
|
|
|
|
}
|
2003-07-22 00:10:14 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
2005-08-10 11:53:47 +02:00
|
|
|
* DllGetClassObject (DMLOADER.@)
|
2003-07-22 00:10:14 +02:00
|
|
|
*/
|
2005-08-08 19:35:28 +02:00
|
|
|
HRESULT WINAPI DllGetClassObject (REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
|
|
|
{
|
2004-02-25 02:30:03 +01:00
|
|
|
TRACE("(%s, %s, %p)\n", debugstr_dmguid(rclsid), debugstr_dmguid(riid), ppv);
|
2003-08-23 01:53:27 +02:00
|
|
|
if (IsEqualCLSID (rclsid, &CLSID_DirectMusicLoader) && IsEqualIID (riid, &IID_IClassFactory)) {
|
2011-08-02 10:25:52 +02:00
|
|
|
IClassFactory_AddRef(&dm_loader_CF.IClassFactory_iface);
|
|
|
|
*ppv = &dm_loader_CF.IClassFactory_iface;
|
|
|
|
return S_OK;
|
|
|
|
} else if (IsEqualCLSID (rclsid, &CLSID_DirectMusicContainer) && IsEqualIID (riid, &IID_IClassFactory)) {
|
|
|
|
IClassFactory_AddRef(&dm_container_CF.IClassFactory_iface);
|
|
|
|
*ppv = &dm_container_CF.IClassFactory_iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2004-05-13 02:00:22 +02:00
|
|
|
WARN(": no class found\n");
|
2003-07-22 00:10:14 +02:00
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|
2010-12-03 12:36:54 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllRegisterServer (DMLOADER.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllRegisterServer(void)
|
|
|
|
{
|
2011-08-02 15:51:55 +02:00
|
|
|
return __wine_register_resources( instance );
|
2010-12-03 12:36:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllUnregisterServer (DMLOADER.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllUnregisterServer(void)
|
|
|
|
{
|
2011-08-02 15:51:55 +02:00
|
|
|
return __wine_unregister_resources( instance );
|
2010-12-03 12:36:54 +01:00
|
|
|
}
|