2003-07-22 00:10:14 +02:00
|
|
|
/* IDirectMusicTool8 Implementation
|
|
|
|
*
|
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 "dmime_private.h"
|
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmime);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicTool8Impl IUnknown part: */
|
2005-06-21 11:44:28 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_QueryInterface (LPDIRECTMUSICTOOL8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2004-02-25 02:30:03 +01:00
|
|
|
TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ppobj);
|
2003-08-23 01:53:27 +02:00
|
|
|
if (IsEqualIID (riid, &IID_IUnknown) ||
|
|
|
|
IsEqualIID (riid, &IID_IDirectMusicTool) ||
|
|
|
|
IsEqualIID (riid, &IID_IDirectMusicTool8)) {
|
2005-06-21 11:44:28 +02:00
|
|
|
IUnknown_AddRef(iface);
|
2003-07-22 00:10:14 +02:00
|
|
|
*ppobj = This;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2004-02-25 02:30:03 +01:00
|
|
|
WARN("(%p, %s, %p): not found\n", This, debugstr_dmguid(riid), ppobj);
|
2003-07-22 00:10:14 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2005-06-21 11:44:28 +02:00
|
|
|
static ULONG WINAPI IDirectMusicTool8Impl_AddRef (LPDIRECTMUSICTOOL8 iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2005-01-11 17:02:21 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 01:07:26 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2005-01-11 17:02:21 +01:00
|
|
|
|
2005-02-02 10:31:06 +01:00
|
|
|
DMIME_LockModule();
|
|
|
|
|
2005-01-11 17:02:21 +01:00
|
|
|
return ref;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2005-06-20 18:01:04 +02:00
|
|
|
static ULONG WINAPI IDirectMusicTool8Impl_Release (LPDIRECTMUSICTOOL8 iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2005-01-11 17:02:21 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2006-10-10 01:07:26 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-02-02 10:31:06 +01:00
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
if (ref == 0) {
|
2003-07-22 00:10:14 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
2005-02-02 10:31:06 +01:00
|
|
|
|
|
|
|
DMIME_UnlockModule();
|
|
|
|
|
2003-07-22 00:10:14 +02:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicTool8Impl IDirectMusicTool part: */
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_Init (LPDIRECTMUSICTOOL8 iface, IDirectMusicGraph* pGraph) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pGraph);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_GetMsgDeliveryType (LPDIRECTMUSICTOOL8 iface, DWORD* pdwDeliveryType) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pdwDeliveryType);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_GetMediaTypeArraySize (LPDIRECTMUSICTOOL8 iface, DWORD* pdwNumElements) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pdwNumElements);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_GetMediaTypes (LPDIRECTMUSICTOOL8 iface, DWORD** padwMediaTypes, DWORD dwNumElements) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2006-10-10 01:07:26 +02:00
|
|
|
FIXME("(%p, %p, %d): stub\n", This, padwMediaTypes, dwNumElements);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_ProcessPMsg (LPDIRECTMUSICTOOL8 iface, IDirectMusicPerformance* pPerf, DMUS_PMSG* pPMSG) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p, %p): stub\n", This, pPerf, pPMSG);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_Flush (LPDIRECTMUSICTOOL8 iface, IDirectMusicPerformance* pPerf, DMUS_PMSG* pPMSG, REFERENCE_TIME rtTime) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2006-09-20 22:25:51 +02:00
|
|
|
FIXME("(%p, %p, %p, 0x%s): stub\n", This, pPerf, pPMSG, wine_dbgstr_longlong(rtTime));
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicTool8Impl IDirectMusicTool8 part: */
|
2005-06-20 18:01:04 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicTool8Impl_Clone (LPDIRECTMUSICTOOL8 iface, IDirectMusicTool** ppTool) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicTool8Impl *This = (IDirectMusicTool8Impl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, ppTool);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-05-30 12:01:08 +02:00
|
|
|
static const IDirectMusicTool8Vtbl DirectMusicTool8_Vtbl = {
|
2003-07-22 00:10:14 +02:00
|
|
|
IDirectMusicTool8Impl_QueryInterface,
|
|
|
|
IDirectMusicTool8Impl_AddRef,
|
|
|
|
IDirectMusicTool8Impl_Release,
|
|
|
|
IDirectMusicTool8Impl_Init,
|
|
|
|
IDirectMusicTool8Impl_GetMsgDeliveryType,
|
|
|
|
IDirectMusicTool8Impl_GetMediaTypeArraySize,
|
|
|
|
IDirectMusicTool8Impl_GetMediaTypes,
|
|
|
|
IDirectMusicTool8Impl_ProcessPMsg,
|
|
|
|
IDirectMusicTool8Impl_Flush,
|
|
|
|
IDirectMusicTool8Impl_Clone
|
|
|
|
};
|
|
|
|
|
|
|
|
/* for ClassFactory */
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI DMUSIC_CreateDirectMusicobjImpl (LPCGUID lpcGUID, LPVOID *ppobj, LPUNKNOWN pUnkOuter) {
|
|
|
|
IDirectMusicTool8Impl* obj;
|
|
|
|
|
|
|
|
obj = HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicTool8Impl));
|
|
|
|
if (NULL == obj) {
|
2004-12-22 16:13:20 +01:00
|
|
|
*ppobj = NULL;
|
2004-01-20 01:21:40 +01:00
|
|
|
return E_OUTOFMEMORY;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
2004-01-20 01:21:40 +01:00
|
|
|
obj->lpVtbl = &DirectMusicTool8_Vtbl;
|
|
|
|
obj->ref = 0; /* will be inited by QueryInterface */
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
return IDirectMusicTool8Impl_QueryInterface ((LPDIRECTMUSICTOOL8)obj, lpcGUID, ppobj);
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|