2003-07-22 00:10:14 +02:00
|
|
|
/* IDirectMusicAudioPath 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"
|
2015-06-15 01:19:37 +02:00
|
|
|
#include "dmobject.h"
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmime);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2015-04-27 00:49:04 +02:00
|
|
|
struct IDirectMusicAudioPathImpl {
|
2015-04-27 09:49:11 +02:00
|
|
|
IDirectMusicAudioPath IDirectMusicAudioPath_iface;
|
2015-06-15 01:19:37 +02:00
|
|
|
struct dmobject dmobj;
|
2015-04-27 09:49:11 +02:00
|
|
|
LONG ref;
|
|
|
|
IDirectMusicPerformance8* pPerf;
|
|
|
|
IDirectMusicGraph* pToolGraph;
|
|
|
|
IDirectSoundBuffer* pDSBuffer;
|
|
|
|
IDirectSoundBuffer* pPrimary;
|
2015-04-27 00:49:04 +02:00
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
BOOL fActive;
|
2015-04-27 00:49:04 +02:00
|
|
|
};
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
static inline struct IDirectMusicAudioPathImpl *impl_from_IDirectMusicAudioPath(IDirectMusicAudioPath *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct IDirectMusicAudioPathImpl, IDirectMusicAudioPath_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct IDirectMusicAudioPathImpl *impl_from_IPersistStream(IPersistStream *iface)
|
|
|
|
{
|
2015-06-15 01:19:37 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct IDirectMusicAudioPathImpl, dmobj.IPersistStream_iface);
|
2015-04-27 09:49:11 +02:00
|
|
|
}
|
|
|
|
|
2015-04-27 00:49:04 +02:00
|
|
|
void set_audiopath_perf_pointer(IDirectMusicAudioPath *iface, IDirectMusicPerformance8 *performance)
|
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2015-04-27 00:49:04 +02:00
|
|
|
This->pPerf = performance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_audiopath_dsound_buffer(IDirectMusicAudioPath *iface, IDirectSoundBuffer *buffer)
|
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2015-04-27 00:49:04 +02:00
|
|
|
This->pDSBuffer = buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_audiopath_primary_dsound_buffer(IDirectMusicAudioPath *iface, IDirectSoundBuffer *buffer)
|
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2015-04-27 00:49:04 +02:00
|
|
|
This->pPrimary = buffer;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicAudioPathImpl implementation
|
|
|
|
*/
|
2015-04-27 01:10:26 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicAudioPathImpl_QueryInterface (IDirectMusicAudioPath *iface, REFIID riid, void **ppobj)
|
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ppobj);
|
2005-01-11 17:02:21 +01:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
*ppobj = NULL;
|
2005-01-11 17:02:21 +01:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
if (IsEqualIID (riid, &IID_IDirectMusicAudioPath) || IsEqualIID (riid, &IID_IUnknown))
|
2015-04-27 09:49:11 +02:00
|
|
|
*ppobj = &This->IDirectMusicAudioPath_iface;
|
2015-04-27 01:10:26 +02:00
|
|
|
else if (IsEqualIID (riid, &IID_IDirectMusicObject))
|
2015-06-15 01:19:37 +02:00
|
|
|
*ppobj = &This->dmobj.IDirectMusicObject_iface;
|
2015-04-27 01:10:26 +02:00
|
|
|
else if (IsEqualIID (riid, &IID_IPersistStream))
|
2015-06-15 01:19:37 +02:00
|
|
|
*ppobj = &This->dmobj.IPersistStream_iface;
|
2005-02-02 10:31:06 +01:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
if (*ppobj) {
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppobj);
|
|
|
|
return S_OK;
|
2004-05-10 21:56:17 +02:00
|
|
|
}
|
2005-02-02 10:31:06 +01:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
WARN("(%p, %s, %p): not found\n", This, debugstr_dmguid(riid), ppobj);
|
|
|
|
return E_NOINTERFACE;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
static ULONG WINAPI IDirectMusicAudioPathImpl_AddRef (IDirectMusicAudioPath *iface)
|
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2015-04-27 01:10:26 +02:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2004-01-20 01:21:40 +01:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
TRACE("(%p): AddRef from %d\n", This, ref - 1);
|
2004-01-20 01:21:40 +01:00
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
DMIME_LockModule();
|
|
|
|
return ref;
|
2004-01-20 01:21:40 +01:00
|
|
|
}
|
|
|
|
|
2015-04-27 01:10:26 +02:00
|
|
|
static ULONG WINAPI IDirectMusicAudioPathImpl_Release (IDirectMusicAudioPath *iface)
|
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2015-04-27 01:10:26 +02:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p): ReleaseRef to %d\n", This, ref);
|
|
|
|
|
|
|
|
if (ref == 0) {
|
2019-12-18 06:06:44 +01:00
|
|
|
if (This->pPrimary)
|
|
|
|
IDirectSoundBuffer_Release(This->pPrimary);
|
2015-04-27 01:10:26 +02:00
|
|
|
if (This->pDSBuffer)
|
2018-04-03 20:18:04 +02:00
|
|
|
IDirectSoundBuffer_Release(This->pDSBuffer);
|
2015-04-27 01:10:26 +02:00
|
|
|
This->pPerf = NULL;
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
|
|
|
|
DMIME_UnlockModule();
|
|
|
|
return ref;
|
2004-01-20 01:21:40 +01:00
|
|
|
}
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicAudioPathImpl_GetObjectInPath (IDirectMusicAudioPath *iface, DWORD dwPChannel, DWORD dwStage, DWORD dwBuffer,
|
|
|
|
REFGUID guidObject, WORD dwIndex, REFGUID iidInterface, void** ppObject)
|
|
|
|
{
|
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2015-05-06 08:49:33 +02:00
|
|
|
HRESULT hr;
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
FIXME("(%p, %d, %d, %d, %s, %d, %s, %p): stub\n", This, dwPChannel, dwStage, dwBuffer, debugstr_dmguid(guidObject),
|
|
|
|
dwIndex, debugstr_dmguid(iidInterface), ppObject);
|
2004-05-05 03:32:55 +02:00
|
|
|
|
2003-07-22 00:10:14 +02:00
|
|
|
switch (dwStage) {
|
2014-02-26 10:03:35 +01:00
|
|
|
case DMUS_PATH_BUFFER:
|
|
|
|
if (This->pDSBuffer)
|
|
|
|
{
|
2017-06-28 12:50:52 +02:00
|
|
|
if (IsEqualIID (iidInterface, &IID_IUnknown) ||
|
|
|
|
IsEqualIID (iidInterface, &IID_IDirectSoundBuffer) ||
|
|
|
|
IsEqualIID (iidInterface, &IID_IDirectSoundBuffer8) ||
|
|
|
|
IsEqualIID (iidInterface, &IID_IDirectSound3DBuffer)) {
|
2018-04-03 20:18:04 +02:00
|
|
|
return IDirectSoundBuffer_QueryInterface(This->pDSBuffer, iidInterface, ppObject);
|
2017-06-28 12:50:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Unsupported interface %s\n", debugstr_dmguid(iidInterface));
|
|
|
|
*ppObject = NULL;
|
|
|
|
return E_NOINTERFACE;
|
2014-02-26 10:03:35 +01:00
|
|
|
}
|
|
|
|
break;
|
2003-07-22 00:10:14 +02:00
|
|
|
|
|
|
|
case DMUS_PATH_PRIMARY_BUFFER: {
|
2003-08-23 01:53:27 +02:00
|
|
|
if (IsEqualIID (iidInterface, &IID_IDirectSound3DListener)) {
|
2018-04-03 20:18:04 +02:00
|
|
|
IDirectSoundBuffer_QueryInterface(This->pPrimary, &IID_IDirectSound3DListener, ppObject);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
2003-08-23 01:53:27 +02:00
|
|
|
} else {
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("bad iid...\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DMUS_PATH_AUDIOPATH_GRAPH:
|
|
|
|
{
|
2003-08-23 01:53:27 +02:00
|
|
|
if (IsEqualIID (iidInterface, &IID_IDirectMusicGraph)) {
|
2003-07-22 00:10:14 +02:00
|
|
|
if (NULL == This->pToolGraph) {
|
|
|
|
IDirectMusicGraphImpl* pGraph;
|
2015-05-06 08:49:33 +02:00
|
|
|
hr = create_dmgraph(&IID_IDirectMusicGraph, (void**)&pGraph);
|
|
|
|
if (FAILED(hr))
|
|
|
|
return hr;
|
2003-07-22 00:10:14 +02:00
|
|
|
This->pToolGraph = (IDirectMusicGraph*) pGraph;
|
|
|
|
}
|
2007-12-08 00:01:46 +01:00
|
|
|
*ppObject = This->pToolGraph;
|
2004-01-20 01:21:40 +01:00
|
|
|
IDirectMusicGraph_AddRef((LPDIRECTMUSICGRAPH) *ppObject);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DMUS_PATH_AUDIOPATH_TOOL:
|
|
|
|
{
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DMUS_PATH_PERFORMANCE:
|
|
|
|
{
|
|
|
|
/* TODO check wanted GUID */
|
2007-12-08 00:01:46 +01:00
|
|
|
*ppObject = This->pPerf;
|
2005-06-21 11:44:28 +02:00
|
|
|
IUnknown_AddRef((LPUNKNOWN) *ppObject);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DMUS_PATH_PERFORMANCE_GRAPH:
|
|
|
|
{
|
|
|
|
IDirectMusicGraph* pPerfoGraph = NULL;
|
2007-12-08 00:01:46 +01:00
|
|
|
IDirectMusicPerformance8_GetGraph(This->pPerf, &pPerfoGraph);
|
2003-07-22 00:10:14 +02:00
|
|
|
if (NULL == pPerfoGraph) {
|
|
|
|
IDirectMusicGraphImpl* pGraph = NULL;
|
2015-05-06 08:49:33 +02:00
|
|
|
hr = create_dmgraph(&IID_IDirectMusicGraph, (void**)&pGraph);
|
|
|
|
if (FAILED(hr))
|
|
|
|
return hr;
|
2007-12-08 00:01:46 +01:00
|
|
|
IDirectMusicPerformance8_SetGraph(This->pPerf, (IDirectMusicGraph*) pGraph);
|
2003-07-22 00:10:14 +02:00
|
|
|
/* we need release as SetGraph do an AddRef */
|
2004-01-20 01:21:40 +01:00
|
|
|
IDirectMusicGraph_Release((LPDIRECTMUSICGRAPH) pGraph);
|
2003-07-22 00:10:14 +02:00
|
|
|
pPerfoGraph = (LPDIRECTMUSICGRAPH) pGraph;
|
|
|
|
}
|
2007-12-08 00:01:46 +01:00
|
|
|
*ppObject = pPerfoGraph;
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DMUS_PATH_PERFORMANCE_TOOL:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppObject = NULL;
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
2020-03-26 19:09:26 +01:00
|
|
|
static HRESULT WINAPI IDirectMusicAudioPathImpl_Activate(IDirectMusicAudioPath *iface, BOOL activate)
|
2015-04-27 09:49:11 +02:00
|
|
|
{
|
2020-03-26 19:09:26 +01:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
|
|
|
|
|
|
|
FIXME("(%p, %d): semi-stub\n", This, activate);
|
|
|
|
|
|
|
|
if (!!activate == This->fActive)
|
|
|
|
return S_FALSE;
|
|
|
|
|
|
|
|
if (!activate && This->pDSBuffer) {
|
|
|
|
/* Path is being deactivated */
|
|
|
|
IDirectSoundBuffer_Stop(This->pDSBuffer);
|
2004-05-11 06:27:23 +02:00
|
|
|
}
|
2020-03-26 19:09:26 +01:00
|
|
|
|
|
|
|
This->fActive = !!activate;
|
|
|
|
|
|
|
|
return S_OK;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicAudioPathImpl_SetVolume (IDirectMusicAudioPath *iface, LONG lVolume, DWORD dwDuration)
|
|
|
|
{
|
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2009-01-10 02:44:57 +01:00
|
|
|
FIXME("(%p, %i, %d): stub\n", This, lVolume, dwDuration);
|
2004-05-19 06:32:43 +02:00
|
|
|
return S_OK;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicAudioPathImpl_ConvertPChannel (IDirectMusicAudioPath *iface, DWORD dwPChannelIn, DWORD* pdwPChannelOut)
|
|
|
|
{
|
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IDirectMusicAudioPath(iface);
|
2006-10-10 01:07:26 +02:00
|
|
|
FIXME("(%p, %d, %p): stub\n", This, dwPChannelIn, pdwPChannelOut);
|
2004-05-19 06:32:43 +02:00
|
|
|
return S_OK;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
static const IDirectMusicAudioPathVtbl DirectMusicAudioPathVtbl = {
|
2015-04-27 01:10:26 +02:00
|
|
|
IDirectMusicAudioPathImpl_QueryInterface,
|
|
|
|
IDirectMusicAudioPathImpl_AddRef,
|
|
|
|
IDirectMusicAudioPathImpl_Release,
|
2015-04-27 09:49:11 +02:00
|
|
|
IDirectMusicAudioPathImpl_GetObjectInPath,
|
|
|
|
IDirectMusicAudioPathImpl_Activate,
|
|
|
|
IDirectMusicAudioPathImpl_SetVolume,
|
|
|
|
IDirectMusicAudioPathImpl_ConvertPChannel
|
2003-07-22 00:10:14 +02:00
|
|
|
};
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
/* IDirectMusicObject */
|
2018-03-11 22:20:41 +01:00
|
|
|
static HRESULT WINAPI path_IDirectMusicObject_ParseDescriptor(IDirectMusicObject *iface,
|
|
|
|
IStream *stream, DMUS_OBJECTDESC *desc)
|
2015-04-27 09:49:11 +02:00
|
|
|
{
|
2018-03-11 22:20:41 +01:00
|
|
|
struct chunk_entry riff = {0};
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", iface, stream, desc);
|
|
|
|
|
|
|
|
if (!stream)
|
|
|
|
return E_POINTER;
|
|
|
|
if (!desc || desc->dwSize != sizeof(*desc))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if ((hr = stream_get_chunk(stream, &riff)) != S_OK)
|
|
|
|
return hr;
|
|
|
|
if (riff.id != FOURCC_RIFF || riff.type != DMUS_FOURCC_AUDIOPATH_FORM) {
|
|
|
|
TRACE("loading failed: unexpected %s\n", debugstr_chunk(&riff));
|
|
|
|
stream_skip_chunk(stream, &riff);
|
|
|
|
return DMUS_E_CHUNKNOTFOUND;
|
|
|
|
}
|
2003-08-23 01:53:27 +02:00
|
|
|
|
2018-03-11 22:20:41 +01:00
|
|
|
hr = dmobj_parsedescriptor(stream, &riff, desc,
|
|
|
|
DMUS_OBJ_OBJECT|DMUS_OBJ_NAME|DMUS_OBJ_CATEGORY|DMUS_OBJ_VERSION);
|
|
|
|
if (FAILED(hr))
|
|
|
|
return hr;
|
2008-02-23 16:19:04 +01:00
|
|
|
|
2018-03-11 22:20:41 +01:00
|
|
|
desc->guidClass = CLSID_DirectMusicAudioPathConfig;
|
|
|
|
desc->dwValidData |= DMUS_OBJ_CLASS;
|
2008-02-23 16:19:04 +01:00
|
|
|
|
2019-09-30 20:35:59 +02:00
|
|
|
dump_DMUS_OBJECTDESC(desc);
|
2018-03-11 22:20:41 +01:00
|
|
|
return S_OK;
|
2003-08-23 01:53:27 +02:00
|
|
|
}
|
|
|
|
|
2015-06-15 01:19:37 +02:00
|
|
|
static const IDirectMusicObjectVtbl dmobject_vtbl = {
|
|
|
|
dmobj_IDirectMusicObject_QueryInterface,
|
|
|
|
dmobj_IDirectMusicObject_AddRef,
|
|
|
|
dmobj_IDirectMusicObject_Release,
|
|
|
|
dmobj_IDirectMusicObject_GetDescriptor,
|
|
|
|
dmobj_IDirectMusicObject_SetDescriptor,
|
2018-03-11 22:20:41 +01:00
|
|
|
path_IDirectMusicObject_ParseDescriptor
|
2003-08-23 01:53:27 +02:00
|
|
|
};
|
|
|
|
|
2015-04-27 09:49:11 +02:00
|
|
|
/* IPersistStream */
|
2018-03-13 00:23:26 +01:00
|
|
|
static HRESULT WINAPI path_IPersistStream_Load(IPersistStream *iface, IStream *stream)
|
2015-04-27 09:49:11 +02:00
|
|
|
{
|
2018-03-13 00:23:26 +01:00
|
|
|
struct IDirectMusicAudioPathImpl *This = impl_from_IPersistStream(iface);
|
|
|
|
|
|
|
|
FIXME("(%p, %p): Loading not implemented yet\n", This, stream);
|
2004-01-20 01:21:40 +01:00
|
|
|
|
2018-03-13 00:23:26 +01:00
|
|
|
return IDirectMusicObject_ParseDescriptor(&This->dmobj.IDirectMusicObject_iface, stream,
|
|
|
|
&This->dmobj.desc);
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
2003-08-23 01:53:27 +02:00
|
|
|
|
2015-06-15 01:19:37 +02:00
|
|
|
static const IPersistStreamVtbl persiststream_vtbl = {
|
|
|
|
dmobj_IPersistStream_QueryInterface,
|
|
|
|
dmobj_IPersistStream_AddRef,
|
|
|
|
dmobj_IPersistStream_Release,
|
|
|
|
dmobj_IPersistStream_GetClassID,
|
|
|
|
unimpl_IPersistStream_IsDirty,
|
2018-03-13 00:23:26 +01:00
|
|
|
path_IPersistStream_Load,
|
2015-06-15 01:19:37 +02:00
|
|
|
unimpl_IPersistStream_Save,
|
|
|
|
unimpl_IPersistStream_GetSizeMax
|
2003-08-23 01:53:27 +02:00
|
|
|
};
|
2004-01-20 01:21:40 +01:00
|
|
|
|
|
|
|
/* for ClassFactory */
|
2015-04-27 09:49:11 +02:00
|
|
|
HRESULT WINAPI create_dmaudiopath(REFIID riid, void **ppobj)
|
2014-01-10 10:41:27 +01:00
|
|
|
{
|
2015-04-27 09:49:11 +02:00
|
|
|
IDirectMusicAudioPathImpl* obj;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicAudioPathImpl));
|
|
|
|
if (NULL == obj) {
|
|
|
|
*ppobj = NULL;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
obj->IDirectMusicAudioPath_iface.lpVtbl = &DirectMusicAudioPathVtbl;
|
|
|
|
obj->ref = 1;
|
2015-06-15 01:19:37 +02:00
|
|
|
dmobject_init(&obj->dmobj, &CLSID_DirectMusicAudioPathConfig,
|
|
|
|
(IUnknown *)&obj->IDirectMusicAudioPath_iface);
|
|
|
|
obj->dmobj.IDirectMusicObject_iface.lpVtbl = &dmobject_vtbl;
|
|
|
|
obj->dmobj.IPersistStream_iface.lpVtbl = &persiststream_vtbl;
|
2015-04-27 09:49:11 +02:00
|
|
|
|
|
|
|
hr = IDirectMusicAudioPath_QueryInterface(&obj->IDirectMusicAudioPath_iface, riid, ppobj);
|
|
|
|
IDirectMusicAudioPath_Release(&obj->IDirectMusicAudioPath_iface);
|
|
|
|
return hr;
|
2004-01-20 01:21:40 +01:00
|
|
|
}
|