2003-08-22 23:53:27 +00:00
|
|
|
/* IDirectMusicAuditionTrack Implementation
|
|
|
|
*
|
2004-01-20 00:21:40 +00:00
|
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
2003-08-22 23:53:27 +00:00
|
|
|
*
|
2007-05-30 10:54:07 +00: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-08-22 23:53:27 +00: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 10:54:07 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-08-22 23:53:27 +00:00
|
|
|
*
|
2007-05-30 10:54:07 +00: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-08-22 23:53:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dmstyle_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmstyle);
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicAuditionTrack implementation
|
|
|
|
*/
|
2015-06-28 21:32:38 +00:00
|
|
|
typedef struct IDirectMusicAuditionTrack {
|
2015-06-30 07:24:02 +00:00
|
|
|
IDirectMusicTrack8 IDirectMusicTrack8_iface;
|
2015-06-28 21:32:38 +00:00
|
|
|
const IPersistStreamVtbl *PersistStreamVtbl;
|
|
|
|
LONG ref;
|
|
|
|
DMUS_OBJECTDESC *pDesc;
|
|
|
|
} IDirectMusicAuditionTrack;
|
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
/* IDirectMusicAuditionTrack IDirectMusicTrack8 part: */
|
2015-06-30 07:20:11 +00:00
|
|
|
static inline IDirectMusicAuditionTrack *impl_from_IDirectMusicTrack8(IDirectMusicTrack8 *iface)
|
|
|
|
{
|
2015-06-30 07:24:02 +00:00
|
|
|
return CONTAINING_RECORD(iface, IDirectMusicAuditionTrack, IDirectMusicTrack8_iface);
|
2015-06-30 07:20:11 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_QueryInterface(IDirectMusicTrack8 *iface, REFIID riid,
|
2015-06-30 07:24:55 +00:00
|
|
|
void **ret_iface)
|
2015-06-30 07:24:02 +00:00
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2015-06-30 07:24:55 +00:00
|
|
|
|
|
|
|
TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ret_iface);
|
|
|
|
|
|
|
|
*ret_iface = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IDirectMusicTrack) ||
|
|
|
|
IsEqualIID(riid, &IID_IDirectMusicTrack8))
|
|
|
|
*ret_iface = iface;
|
|
|
|
else if (IsEqualIID(riid, &IID_IPersistStream))
|
|
|
|
*ret_iface = &This->PersistStreamVtbl;
|
|
|
|
else {
|
|
|
|
WARN("(%p, %s, %p): not found\n", This, debugstr_dmguid(riid), ret_iface);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IUnknown_AddRef((IUnknown*)*ret_iface);
|
|
|
|
return S_OK;
|
2004-01-20 00:21:40 +00:00
|
|
|
}
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static ULONG WINAPI IDirectMusicTrack8Impl_AddRef(IDirectMusicTrack8 *iface)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2015-06-30 07:24:55 +00:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
2004-01-20 00:21:40 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static ULONG WINAPI IDirectMusicTrack8Impl_Release(IDirectMusicTrack8 *iface)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2015-06-30 07:24:55 +00:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
if (!ref) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
DMSTYLE_UnlockModule();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Init(IDirectMusicTrack8 *iface,
|
|
|
|
IDirectMusicSegment *pSegment)
|
2003-08-22 23:53:27 +00:00
|
|
|
{
|
2015-06-30 07:24:02 +00:00
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2004-01-20 00:21:40 +00:00
|
|
|
FIXME("(%p, %p): stub\n", This, pSegment);
|
|
|
|
return S_OK;
|
|
|
|
}
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_InitPlay(IDirectMusicTrack8 *iface,
|
|
|
|
IDirectMusicSegmentState *pSegmentState, IDirectMusicPerformance *pPerformance,
|
|
|
|
void **ppStateData, DWORD dwVirtualTrack8ID, DWORD dwFlags)
|
2004-01-20 00:21:40 +00:00
|
|
|
{
|
2015-06-30 07:24:02 +00:00
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2006-10-12 20:56:15 +00:00
|
|
|
FIXME("(%p, %p, %p, %p, %d, %d): stub\n", This, pSegmentState, pPerformance, ppStateData, dwVirtualTrack8ID, dwFlags);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_EndPlay(IDirectMusicTrack8 *iface, void *pStateData)
|
2003-08-22 23:53:27 +00:00
|
|
|
{
|
2015-06-30 07:24:02 +00:00
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2003-08-22 23:53:27 +00:00
|
|
|
FIXME("(%p, %p): stub\n", This, pStateData);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Play(IDirectMusicTrack8 *iface, void *pStateData,
|
|
|
|
MUSIC_TIME mtStart, MUSIC_TIME mtEnd, MUSIC_TIME mtOffset, DWORD dwFlags,
|
|
|
|
IDirectMusicPerformance *pPerf, IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID)
|
2003-08-22 23:53:27 +00:00
|
|
|
{
|
2015-06-30 07:24:02 +00:00
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2009-01-10 01:44:41 +00:00
|
|
|
FIXME("(%p, %p, %d, %d, %d, %d, %p, %p, %d): stub\n", This, pStateData, mtStart, mtEnd, mtOffset, dwFlags, pPerf, pSegSt, dwVirtualID);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_GetParam(IDirectMusicTrack8 *iface, REFGUID rguidType,
|
|
|
|
MUSIC_TIME mtTime, MUSIC_TIME *pmtNext, void *pParam)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2009-01-10 01:44:41 +00:00
|
|
|
FIXME("(%p, %s, %d, %p, %p): stub\n", This, debugstr_dmguid(rguidType), mtTime, pmtNext, pParam);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_SetParam(IDirectMusicTrack8 *iface, REFGUID rguidType,
|
|
|
|
MUSIC_TIME mtTime, void *pParam)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2009-01-10 01:44:41 +00:00
|
|
|
FIXME("(%p, %s, %d, %p): stub\n", This, debugstr_dmguid(rguidType), mtTime, pParam);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_IsParamSupported(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID rguidType)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2006-10-13 00:23:08 +00:00
|
|
|
TRACE("(%p, %s)\n", This, debugstr_dmguid(rguidType));
|
2015-06-25 22:27:29 +00:00
|
|
|
|
|
|
|
if (!rguidType)
|
|
|
|
return E_POINTER;
|
|
|
|
|
2003-08-22 23:53:27 +00:00
|
|
|
/* didn't find any params */
|
|
|
|
TRACE("param unsupported\n");
|
|
|
|
return DMUS_E_TYPE_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_AddNotificationType(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID rguidNotificationType)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2004-02-25 01:30:03 +00:00
|
|
|
FIXME("(%p, %s): stub\n", This, debugstr_dmguid(rguidNotificationType));
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_RemoveNotificationType(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID rguidNotificationType)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2004-02-25 01:30:03 +00:00
|
|
|
FIXME("(%p, %s): stub\n", This, debugstr_dmguid(rguidNotificationType));
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Clone(IDirectMusicTrack8 *iface, MUSIC_TIME mtStart,
|
|
|
|
MUSIC_TIME mtEnd, IDirectMusicTrack **ppTrack)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2009-01-10 01:44:41 +00:00
|
|
|
FIXME("(%p, %d, %d, %p): stub\n", This, mtStart, mtEnd, ppTrack);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_PlayEx(IDirectMusicTrack8 *iface, void *pStateData,
|
|
|
|
REFERENCE_TIME rtStart, REFERENCE_TIME rtEnd, REFERENCE_TIME rtOffset, DWORD dwFlags,
|
|
|
|
IDirectMusicPerformance *pPerf, IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2006-10-12 20:56:15 +00:00
|
|
|
FIXME("(%p, %p, 0x%s, 0x%s, 0x%s, %d, %p, %p, %d): stub\n", This, pStateData, wine_dbgstr_longlong(rtStart),
|
2006-09-12 20:49:20 +00:00
|
|
|
wine_dbgstr_longlong(rtEnd), wine_dbgstr_longlong(rtOffset), dwFlags, pPerf, pSegSt, dwVirtualID);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_GetParamEx(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID rguidType, REFERENCE_TIME rtTime, REFERENCE_TIME *prtNext, void *pParam,
|
|
|
|
void *pStateData, DWORD dwFlags)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2006-10-12 20:56:15 +00:00
|
|
|
FIXME("(%p, %s, 0x%s, %p, %p, %p, %d): stub\n", This, debugstr_dmguid(rguidType),
|
2006-09-12 20:49:20 +00:00
|
|
|
wine_dbgstr_longlong(rtTime), prtNext, pParam, pStateData, dwFlags);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_SetParamEx(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID rguidType, REFERENCE_TIME rtTime, void *pParam, void *pStateData, DWORD dwFlags)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2006-10-12 20:56:15 +00:00
|
|
|
FIXME("(%p, %s, 0x%s, %p, %p, %d): stub\n", This, debugstr_dmguid(rguidType),
|
2006-09-12 20:49:20 +00:00
|
|
|
wine_dbgstr_longlong(rtTime), pParam, pStateData, dwFlags);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:20:11 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Compose(IDirectMusicTrack8 *iface, IUnknown *context,
|
|
|
|
DWORD trackgroup, IDirectMusicTrack **track)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %d, %p): method not implemented\n", This, context, trackgroup, track);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 07:20:11 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Join(IDirectMusicTrack8 *iface,
|
|
|
|
IDirectMusicTrack *newtrack, MUSIC_TIME join, IUnknown *context, DWORD trackgroup,
|
|
|
|
IDirectMusicTrack **resulttrack)
|
|
|
|
{
|
|
|
|
IDirectMusicAuditionTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
TRACE("(%p, %p, %d, %p, %d, %p): stub\n", This, newtrack, join, context, trackgroup,
|
|
|
|
resulttrack);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 07:24:02 +00:00
|
|
|
static const IDirectMusicTrack8Vtbl dmtrack8_vtbl = {
|
|
|
|
IDirectMusicTrack8Impl_QueryInterface,
|
|
|
|
IDirectMusicTrack8Impl_AddRef,
|
|
|
|
IDirectMusicTrack8Impl_Release,
|
|
|
|
IDirectMusicTrack8Impl_Init,
|
|
|
|
IDirectMusicTrack8Impl_InitPlay,
|
|
|
|
IDirectMusicTrack8Impl_EndPlay,
|
|
|
|
IDirectMusicTrack8Impl_Play,
|
|
|
|
IDirectMusicTrack8Impl_GetParam,
|
|
|
|
IDirectMusicTrack8Impl_SetParam,
|
|
|
|
IDirectMusicTrack8Impl_IsParamSupported,
|
|
|
|
IDirectMusicTrack8Impl_AddNotificationType,
|
|
|
|
IDirectMusicTrack8Impl_RemoveNotificationType,
|
|
|
|
IDirectMusicTrack8Impl_Clone,
|
|
|
|
IDirectMusicTrack8Impl_PlayEx,
|
|
|
|
IDirectMusicTrack8Impl_GetParamEx,
|
|
|
|
IDirectMusicTrack8Impl_SetParamEx,
|
2015-06-30 07:20:11 +00:00
|
|
|
IDirectMusicTrack8Impl_Compose,
|
|
|
|
IDirectMusicTrack8Impl_Join
|
2003-08-22 23:53:27 +00:00
|
|
|
};
|
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
/* IDirectMusicAuditionTrack IPersistStream part: */
|
2006-06-10 09:56:49 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicAuditionTrack_IPersistStream_QueryInterface (LPPERSISTSTREAM iface, REFIID riid, LPVOID *ppobj) {
|
2004-01-20 00:21:40 +00:00
|
|
|
ICOM_THIS_MULTI(IDirectMusicAuditionTrack, PersistStreamVtbl, iface);
|
2015-06-30 07:24:55 +00:00
|
|
|
return IDirectMusicTrack8_QueryInterface(&This->IDirectMusicTrack8_iface, riid, ppobj);
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static ULONG WINAPI IDirectMusicAuditionTrack_IPersistStream_AddRef (LPPERSISTSTREAM iface) {
|
2004-01-20 00:21:40 +00:00
|
|
|
ICOM_THIS_MULTI(IDirectMusicAuditionTrack, PersistStreamVtbl, iface);
|
2015-06-30 07:24:55 +00:00
|
|
|
return IDirectMusicTrack8_AddRef(&This->IDirectMusicTrack8_iface);
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static ULONG WINAPI IDirectMusicAuditionTrack_IPersistStream_Release (LPPERSISTSTREAM iface) {
|
2004-01-20 00:21:40 +00:00
|
|
|
ICOM_THIS_MULTI(IDirectMusicAuditionTrack, PersistStreamVtbl, iface);
|
2015-06-30 07:24:55 +00:00
|
|
|
return IDirectMusicTrack8_Release(&This->IDirectMusicTrack8_iface);
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicAuditionTrack_IPersistStream_GetClassID (LPPERSISTSTREAM iface, CLSID* pClassID) {
|
2003-08-22 23:53:27 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicAuditionTrack_IPersistStream_IsDirty (LPPERSISTSTREAM iface) {
|
2003-08-22 23:53:27 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicAuditionTrack_IPersistStream_Load (LPPERSISTSTREAM iface, IStream* pStm) {
|
2003-08-22 23:53:27 +00:00
|
|
|
FIXME(": Loading not implemented yet\n");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicAuditionTrack_IPersistStream_Save (LPPERSISTSTREAM iface, IStream* pStm, BOOL fClearDirty) {
|
2003-08-22 23:53:27 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:56:49 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicAuditionTrack_IPersistStream_GetSizeMax (LPPERSISTSTREAM iface, ULARGE_INTEGER* pcbSize) {
|
2003-08-22 23:53:27 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2005-05-30 10:01:08 +00:00
|
|
|
static const IPersistStreamVtbl DirectMusicAuditionTrack_PersistStream_Vtbl = {
|
2004-01-20 00:21:40 +00:00
|
|
|
IDirectMusicAuditionTrack_IPersistStream_QueryInterface,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_AddRef,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_Release,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_GetClassID,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_IsDirty,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_Load,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_Save,
|
|
|
|
IDirectMusicAuditionTrack_IPersistStream_GetSizeMax
|
2003-08-22 23:53:27 +00:00
|
|
|
};
|
2004-01-20 00:21:40 +00:00
|
|
|
|
|
|
|
/* for ClassFactory */
|
2014-01-15 00:08:41 +00:00
|
|
|
HRESULT WINAPI create_dmauditiontrack(REFIID lpcGUID, void **ppobj)
|
|
|
|
{
|
2015-06-30 07:24:55 +00:00
|
|
|
IDirectMusicAuditionTrack *track;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
track = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*track));
|
|
|
|
if (!track) {
|
|
|
|
*ppobj = NULL;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2015-06-30 07:24:02 +00:00
|
|
|
track->IDirectMusicTrack8_iface.lpVtbl = &dmtrack8_vtbl;
|
2004-01-20 00:21:40 +00:00
|
|
|
track->PersistStreamVtbl = &DirectMusicAuditionTrack_PersistStream_Vtbl;
|
|
|
|
track->pDesc = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(DMUS_OBJECTDESC));
|
|
|
|
DM_STRUCT_INIT(track->pDesc);
|
|
|
|
track->pDesc->dwValidData |= DMUS_OBJ_CLASS;
|
2008-02-25 19:48:26 +00:00
|
|
|
track->pDesc->guidClass = CLSID_DirectMusicAuditionTrack;
|
2015-06-30 07:24:55 +00:00
|
|
|
track->ref = 1;
|
|
|
|
|
|
|
|
DMSTYLE_LockModule();
|
|
|
|
hr = IDirectMusicTrack8_QueryInterface(&track->IDirectMusicTrack8_iface, lpcGUID, ppobj);
|
|
|
|
IDirectMusicTrack8_Release(&track->IDirectMusicTrack8_iface);
|
2008-02-25 19:48:26 +00:00
|
|
|
|
2015-06-30 07:24:55 +00:00
|
|
|
return hr;
|
2004-01-20 00:21:40 +00:00
|
|
|
}
|