2003-07-22 00:10:14 +02:00
|
|
|
/* DirectMusicBand Main
|
|
|
|
*
|
2004-01-20 01:21:40 +01:00
|
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
2003-07-22 00:10:14 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dmband_private.h"
|
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmband);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
typedef struct {
|
2003-07-22 00:10:14 +02:00
|
|
|
/* IUnknown fields */
|
|
|
|
ICOM_VFIELD(IClassFactory);
|
|
|
|
DWORD ref;
|
|
|
|
} IClassFactoryImpl;
|
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
/******************************************************************
|
|
|
|
* DirectMusicBand ClassFactory
|
|
|
|
*/
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static HRESULT WINAPI BandCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
2003-07-22 00:10:14 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
2004-02-25 02:30:03 +01:00
|
|
|
FIXME("(%p, %s, %p): stub\n",This, debugstr_dmguid(riid), ppobj);
|
2003-07-22 00:10:14 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static ULONG WINAPI BandCF_AddRef(LPCLASSFACTORY iface) {
|
2003-07-22 00:10:14 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
return ++(This->ref);
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static ULONG WINAPI BandCF_Release(LPCLASSFACTORY iface) {
|
2003-07-22 00:10:14 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
/* static class, won't be freed */
|
|
|
|
return --(This->ref);
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static HRESULT WINAPI BandCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj) {
|
2003-07-22 00:10:14 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
2004-02-25 02:30:03 +01:00
|
|
|
TRACE ("(%p, %p, %s, %p)\n", This, pOuter, debugstr_dmguid(riid), ppobj);
|
2004-01-20 01:21:40 +01:00
|
|
|
return DMUSIC_CreateDirectMusicBandImpl (riid, ppobj, pOuter);
|
2003-08-23 01:53:27 +02:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static HRESULT WINAPI BandCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
|
2003-08-23 01:53:27 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
2004-02-25 02:30:03 +01:00
|
|
|
FIXME("(%p, %d): stub\n", This, dolock);
|
2003-08-23 01:53:27 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
static ICOM_VTABLE(IClassFactory) BandCF_Vtbl = {
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
BandCF_QueryInterface,
|
|
|
|
BandCF_AddRef,
|
|
|
|
BandCF_Release,
|
|
|
|
BandCF_CreateInstance,
|
|
|
|
BandCF_LockServer
|
|
|
|
};
|
|
|
|
|
|
|
|
static IClassFactoryImpl Band_CF = {&BandCF_Vtbl, 1 };
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DirectMusicBandTrack ClassFactory
|
|
|
|
*/
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static HRESULT WINAPI BandTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
2003-08-23 01:53:27 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
|
2004-02-25 02:30:03 +01:00
|
|
|
FIXME("(%p, %s, %p): stub\n", This, debugstr_dmguid(riid), ppobj);
|
2003-08-23 01:53:27 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static ULONG WINAPI BandTrackCF_AddRef(LPCLASSFACTORY iface) {
|
2003-08-23 01:53:27 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
return ++(This->ref);
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static ULONG WINAPI BandTrackCF_Release(LPCLASSFACTORY iface) {
|
2003-08-23 01:53:27 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
/* static class, won't be freed */
|
|
|
|
return --(This->ref);
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static HRESULT WINAPI BandTrackCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj) {
|
2003-08-23 01:53:27 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
2004-02-25 02:30:03 +01:00
|
|
|
TRACE ("(%p, %p, %s, %p)\n", This, pOuter, debugstr_dmguid(riid), ppobj);
|
2004-01-20 01:21:40 +01:00
|
|
|
return DMUSIC_CreateDirectMusicBandTrack (riid, ppobj, pOuter);
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
static HRESULT WINAPI BandTrackCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
|
2003-07-22 00:10:14 +02:00
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
2004-02-25 02:30:03 +01:00
|
|
|
FIXME("(%p, %d): stub\n", This, dolock);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
static ICOM_VTABLE(IClassFactory) BandTrackCF_Vtbl = {
|
2003-07-22 00:10:14 +02:00
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
2003-08-23 01:53:27 +02:00
|
|
|
BandTrackCF_QueryInterface,
|
|
|
|
BandTrackCF_AddRef,
|
|
|
|
BandTrackCF_Release,
|
|
|
|
BandTrackCF_CreateInstance,
|
|
|
|
BandTrackCF_LockServer
|
2003-07-22 00:10:14 +02:00
|
|
|
};
|
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
static IClassFactoryImpl BandTrack_CF = {&BandTrackCF_Vtbl, 1 };
|
2003-07-22 00:10:14 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DllMain
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2004-01-20 01:21:40 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
|
|
|
|
if (fdwReason == DLL_PROCESS_ATTACH) {
|
2003-07-22 00:10:14 +02:00
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
|
|
/* FIXME: Initialisation */
|
2004-01-20 01:21:40 +01:00
|
|
|
} else if (fdwReason == DLL_PROCESS_DETACH) {
|
2003-07-22 00:10:14 +02:00
|
|
|
/* FIXME: Cleanup */
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DllCanUnloadNow (DMBAND.1)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI DMBAND_DllCanUnloadNow(void) {
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(void): stub\n");
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DllGetClassObject (DMBAND.2)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI DMBAND_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_DirectMusicBand) && IsEqualIID (riid, &IID_IClassFactory)) {
|
|
|
|
*ppv = (LPVOID) &Band_CF;
|
|
|
|
IClassFactory_AddRef((IClassFactory*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
} else if (IsEqualCLSID (rclsid, &CLSID_DirectMusicBandTrack) && IsEqualIID (riid, &IID_IClassFactory)) {
|
|
|
|
*ppv = (LPVOID) &BandTrack_CF;
|
|
|
|
IClassFactory_AddRef((IClassFactory*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2004-02-25 02:30:03 +01:00
|
|
|
WARN("(%s, %s, %p): no interface found.\n", debugstr_dmguid(rclsid), debugstr_dmguid(riid), ppv);
|
2003-07-22 00:10:14 +02:00
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|