Fixed header dependencies to be fully compatible with the Windows
[wine/multimedia.git] / dlls / dmcompos / composer.c
blob8c50d7bdd5104b43390b9091cb4a5763990e0243
1 /* IDirectMusicComposer
3 * Copyright (C) 2003 Rok Mandeljc
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Library General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #include <stdarg.h>
22 #include "windef.h"
23 #include "winbase.h"
24 #include "winuser.h"
25 #include "wingdi.h"
26 #include "wine/debug.h"
28 #include "dmcompos_private.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(dmcompos);
32 /* IDirectMusicComposer IUnknown parts follow: */
33 HRESULT WINAPI IDirectMusicComposerImpl_QueryInterface (LPDIRECTMUSICCOMPOSER iface, REFIID riid, LPVOID *ppobj)
35 ICOM_THIS(IDirectMusicComposerImpl,iface);
37 if (IsEqualIID (riid, &IID_IUnknown) ||
38 IsEqualIID (riid, &IID_IDirectMusicComposer)) {
39 IDirectMusicComposerImpl_AddRef(iface);
40 *ppobj = This;
41 return S_OK;
43 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
44 return E_NOINTERFACE;
47 ULONG WINAPI IDirectMusicComposerImpl_AddRef (LPDIRECTMUSICCOMPOSER iface)
49 ICOM_THIS(IDirectMusicComposerImpl,iface);
50 TRACE("(%p) : AddRef from %ld\n", This, This->ref);
51 return ++(This->ref);
54 ULONG WINAPI IDirectMusicComposerImpl_Release (LPDIRECTMUSICCOMPOSER iface)
56 ICOM_THIS(IDirectMusicComposerImpl,iface);
57 ULONG ref = --This->ref;
58 TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
59 if (ref == 0) {
60 HeapFree(GetProcessHeap(), 0, This);
62 return ref;
65 /* IDirectMusicComposer Interface follow: */
66 HRESULT WINAPI IDirectMusicComposerImpl_ComposeSegmentFromTemplate (LPDIRECTMUSICCOMPOSER iface, IDirectMusicStyle* pStyle, IDirectMusicSegment* pTemplate, WORD wActivity, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppSegment)
68 ICOM_THIS(IDirectMusicComposerImpl,iface);
70 FIXME("(%p, %p, %p, %d, %p, %p): stub\n", This, pStyle, pTemplate, wActivity, pChordMap, ppSegment);
72 return S_OK;
75 HRESULT WINAPI IDirectMusicComposerImpl_ComposeSegmentFromShape (LPDIRECTMUSICCOMPOSER iface, IDirectMusicStyle* pStyle, WORD wNumMeasures, WORD wShape, WORD wActivity, BOOL fIntro, BOOL fEnd, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppSegment)
77 ICOM_THIS(IDirectMusicComposerImpl,iface);
79 FIXME("(%p, %p, %d, %d, %d, %d, %d, %p, %p): stub\n", This, pStyle, wNumMeasures, wShape, wActivity, fIntro, fEnd, pChordMap, ppSegment);
81 return S_OK;
84 HRESULT WINAPI IDirectMusicComposerImpl_ComposeTransition (LPDIRECTMUSICCOMPOSER iface, IDirectMusicSegment* pFromSeg, IDirectMusicSegment* pToSeg, MUSIC_TIME mtTime, WORD wCommand, DWORD dwFlags, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppTransSeg)
86 ICOM_THIS(IDirectMusicComposerImpl,iface);
88 FIXME("(%p, %p, %p, %ld, %d, %ld, %p, %p): stub\n", This, pFromSeg, pToSeg, mtTime, wCommand, dwFlags, pChordMap, ppTransSeg);
90 return S_OK;
93 HRESULT WINAPI IDirectMusicComposerImpl_AutoTransition (LPDIRECTMUSICCOMPOSER iface, IDirectMusicPerformance* pPerformance, IDirectMusicSegment* pToSeg, WORD wCommand, DWORD dwFlags, IDirectMusicChordMap* pChordMap, IDirectMusicSegment** ppTransSeg, IDirectMusicSegmentState** ppToSegState, IDirectMusicSegmentState** ppTransSegState)
95 ICOM_THIS(IDirectMusicComposerImpl,iface);
97 FIXME("(%p, %p, %d, %ld, %p, %p, %p, %p): stub\n", This, pPerformance, wCommand, dwFlags, pChordMap, ppTransSeg, ppToSegState, ppTransSegState);
99 return S_OK;
102 HRESULT WINAPI IDirectMusicComposerImpl_ComposeTemplateFromShape (LPDIRECTMUSICCOMPOSER iface, WORD wNumMeasures, WORD wShape, BOOL fIntro, BOOL fEnd, WORD wEndLength, IDirectMusicSegment** ppTemplate)
104 ICOM_THIS(IDirectMusicComposerImpl,iface);
106 FIXME("(%p, %d, %d, %d, %d, %d, %p): stub\n", This, wNumMeasures, wShape, fIntro, fEnd, wEndLength, ppTemplate);
108 return S_OK;
111 HRESULT WINAPI IDirectMusicComposerImpl_ChangeChordMap (LPDIRECTMUSICCOMPOSER iface, IDirectMusicSegment* pSegment, BOOL fTrackScale, IDirectMusicChordMap* pChordMap)
113 ICOM_THIS(IDirectMusicComposerImpl,iface);
115 FIXME("(%p, %p, %d, %p): stub\n", This, pSegment, fTrackScale, pChordMap);
117 return S_OK;
120 ICOM_VTABLE(IDirectMusicComposer) DirectMusicComposer_Vtbl =
122 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
123 IDirectMusicComposerImpl_QueryInterface,
124 IDirectMusicComposerImpl_AddRef,
125 IDirectMusicComposerImpl_Release,
126 IDirectMusicComposerImpl_ComposeSegmentFromTemplate,
127 IDirectMusicComposerImpl_ComposeSegmentFromShape,
128 IDirectMusicComposerImpl_ComposeTransition,
129 IDirectMusicComposerImpl_AutoTransition,
130 IDirectMusicComposerImpl_ComposeTemplateFromShape,
131 IDirectMusicComposerImpl_ChangeChordMap
134 /* for ClassFactory */
135 HRESULT WINAPI DMUSIC_CreateDirectMusicComposer (LPCGUID lpcGUID, LPDIRECTMUSICCOMPOSER* ppDMCP, LPUNKNOWN pUnkOuter)
137 IDirectMusicComposerImpl* dmcompos;
139 if (IsEqualIID (lpcGUID, &IID_IDirectMusicComposer)) {
140 dmcompos = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicComposerImpl));
141 if (NULL == dmcompos) {
142 *ppDMCP = (LPDIRECTMUSICCOMPOSER) NULL;
143 return E_OUTOFMEMORY;
145 dmcompos->lpVtbl = &DirectMusicComposer_Vtbl;
146 dmcompos->ref = 1;
147 *ppDMCP = (LPDIRECTMUSICCOMPOSER) dmcompos;
148 return S_OK;
150 WARN("No interface found\n");
152 return E_NOINTERFACE;