2003-07-22 00:10:14 +02:00
|
|
|
/* IDirectMusicComposer
|
|
|
|
*
|
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 "dmcompos_private.h"
|
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmcompos);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicComposerImpl IUnknown part: */
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_QueryInterface (LPDIRECTMUSICCOMPOSER iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2004-02-25 02:30:03 +01:00
|
|
|
TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ppobj);
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
if (IsEqualIID (riid, &IID_IUnknown) ||
|
|
|
|
IsEqualIID (riid, &IID_IDirectMusicComposer)) {
|
2006-06-10 11:55:30 +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;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:55:30 +02:00
|
|
|
static ULONG WINAPI IDirectMusicComposerImpl_AddRef (LPDIRECTMUSICCOMPOSER iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2005-01-12 20:26:42 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-09 21:25:45 +02:00
|
|
|
TRACE("(%p): AddRef from %d\n", This, ref - 1);
|
2004-12-09 14:46:47 +01:00
|
|
|
|
|
|
|
DMCOMPOS_LockModule();
|
|
|
|
|
2005-01-12 20:26:42 +01:00
|
|
|
return ref;
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2005-06-09 11:44:12 +02:00
|
|
|
static ULONG WINAPI IDirectMusicComposerImpl_Release (LPDIRECTMUSICCOMPOSER iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2005-01-12 20:26:42 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-09 21:25:45 +02:00
|
|
|
TRACE("(%p): ReleaseRef to %d\n", This, ref);
|
2004-12-09 14:46:47 +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);
|
|
|
|
}
|
2004-12-09 14:46:47 +01:00
|
|
|
|
|
|
|
DMCOMPOS_UnlockModule();
|
|
|
|
|
2003-07-22 00:10:14 +02:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicComposerImpl IDirectMusicComposer part: */
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_ComposeSegmentFromTemplate (LPDIRECTMUSICCOMPOSER iface, IDirectMusicStyle* pStyle, IDirectMusicSegment* pTemplate, WORD wActivity, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppSegment) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p, %p, %d, %p, %p): stub\n", This, pStyle, pTemplate, wActivity, pChordMap, ppSegment);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_ComposeSegmentFromShape (LPDIRECTMUSICCOMPOSER iface, IDirectMusicStyle* pStyle, WORD wNumMeasures, WORD wShape, WORD wActivity, BOOL fIntro, BOOL fEnd, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppSegment) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p, %d, %d, %d, %d, %d, %p, %p): stub\n", This, pStyle, wNumMeasures, wShape, wActivity, fIntro, fEnd, pChordMap, ppSegment);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_ComposeTransition (LPDIRECTMUSICCOMPOSER iface, IDirectMusicSegment* pFromSeg, IDirectMusicSegment* pToSeg, MUSIC_TIME mtTime, WORD wCommand, DWORD dwFlags, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppTransSeg) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2009-01-10 02:44:41 +01:00
|
|
|
FIXME("(%p, %p, %p, %d, %d, %d, %p, %p): stub\n", This, pFromSeg, pToSeg, mtTime, wCommand, dwFlags, pChordMap, ppTransSeg);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_AutoTransition (LPDIRECTMUSICCOMPOSER iface, IDirectMusicPerformance* pPerformance, IDirectMusicSegment* pToSeg, WORD wCommand, DWORD dwFlags, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppTransSeg, IDirectMusicSegmentState** ppToSegState, IDirectMusicSegmentState** ppTransSegState) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2006-10-09 21:25:45 +02:00
|
|
|
FIXME("(%p, %p, %d, %d, %p, %p, %p, %p): stub\n", This, pPerformance, wCommand, dwFlags, pChordMap, ppTransSeg, ppToSegState, ppTransSegState);
|
2003-07-22 00:10:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_ComposeTemplateFromShape (LPDIRECTMUSICCOMPOSER iface, WORD wNumMeasures, WORD wShape, BOOL fIntro, BOOL fEnd, WORD wEndLength, IDirectMusicSegment** ppTemplate) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %d, %d, %d, %d, %d, %p): stub\n", This, wNumMeasures, wShape, fIntro, fEnd, wEndLength, ppTemplate);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-09 11:44:12 +02:00
|
|
|
static HRESULT WINAPI IDirectMusicComposerImpl_ChangeChordMap (LPDIRECTMUSICCOMPOSER iface, IDirectMusicSegment* pSegment, BOOL fTrackScale, IDirectMusicChordMap* pChordMap) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicComposerImpl *This = (IDirectMusicComposerImpl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
FIXME("(%p, %p, %d, %p): stub\n", This, pSegment, fTrackScale, pChordMap);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-05-30 12:01:08 +02:00
|
|
|
static const IDirectMusicComposerVtbl DirectMusicComposer_Vtbl = {
|
2003-07-22 00:10:14 +02:00
|
|
|
IDirectMusicComposerImpl_QueryInterface,
|
|
|
|
IDirectMusicComposerImpl_AddRef,
|
|
|
|
IDirectMusicComposerImpl_Release,
|
|
|
|
IDirectMusicComposerImpl_ComposeSegmentFromTemplate,
|
|
|
|
IDirectMusicComposerImpl_ComposeSegmentFromShape,
|
|
|
|
IDirectMusicComposerImpl_ComposeTransition,
|
|
|
|
IDirectMusicComposerImpl_AutoTransition,
|
|
|
|
IDirectMusicComposerImpl_ComposeTemplateFromShape,
|
|
|
|
IDirectMusicComposerImpl_ChangeChordMap
|
|
|
|
};
|
|
|
|
|
|
|
|
/* for ClassFactory */
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI DMUSIC_CreateDirectMusicComposerImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) {
|
|
|
|
IDirectMusicComposerImpl* obj;
|
2003-07-22 00:10:14 +02:00
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicComposerImpl));
|
|
|
|
if (NULL == obj) {
|
2008-11-02 00:27:00 +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 = &DirectMusicComposer_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 IDirectMusicComposerImpl_QueryInterface ((LPDIRECTMUSICCOMPOSER)obj, lpcGUID, ppobj);
|
2003-07-22 00:10:14 +02:00
|
|
|
}
|