1 /* IDirectMusicPatternTrack Implementation
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.
26 #include "wine/debug.h"
28 #include "dmime_private.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(dmime
);
32 /* IDirectMusicPatternTrack IUnknown parts follow: */
33 HRESULT WINAPI
IDirectMusicPatternTrackImpl_QueryInterface (LPDIRECTMUSICPATTERNTRACK iface
, REFIID riid
, LPVOID
*ppobj
)
35 ICOM_THIS(IDirectMusicPatternTrackImpl
,iface
);
37 if (IsEqualIID (riid
, &IID_IUnknown
) ||
38 IsEqualIID (riid
, &IID_IDirectMusicPatternTrack
)) {
39 IDirectMusicPatternTrackImpl_AddRef(iface
);
44 WARN("(%p)->(%s,%p),not found\n", This
, debugstr_guid(riid
), ppobj
);
48 ULONG WINAPI
IDirectMusicPatternTrackImpl_AddRef (LPDIRECTMUSICPATTERNTRACK iface
)
50 ICOM_THIS(IDirectMusicPatternTrackImpl
,iface
);
51 TRACE("(%p) : AddRef from %ld\n", This
, This
->ref
);
55 ULONG WINAPI
IDirectMusicPatternTrackImpl_Release (LPDIRECTMUSICPATTERNTRACK iface
)
57 ICOM_THIS(IDirectMusicPatternTrackImpl
,iface
);
58 ULONG ref
= --This
->ref
;
59 TRACE("(%p) : ReleaseRef to %ld\n", This
, This
->ref
);
61 HeapFree(GetProcessHeap(), 0, This
);
66 /* IDirectMusicPatternTrack Interface follow: */
67 HRESULT WINAPI
IDirectMusicPatternTrackImpl_CreateSegment (LPDIRECTMUSICPATTERNTRACK iface
, IDirectMusicStyle
* pStyle
, IDirectMusicSegment
** ppSegment
)
69 ICOM_THIS(IDirectMusicPatternTrackImpl
,iface
);
71 FIXME("(%p, %p, %p): stub\n", This
, pStyle
, ppSegment
);
76 HRESULT WINAPI
IDirectMusicPatternTrackImpl_SetVariation (LPDIRECTMUSICPATTERNTRACK iface
, IDirectMusicSegmentState
* pSegState
, DWORD dwVariationFlags
, DWORD dwPart
)
78 ICOM_THIS(IDirectMusicPatternTrackImpl
,iface
);
80 FIXME("(%p, %p, %ld, %ld): stub\n", This
, pSegState
, dwVariationFlags
, dwPart
);
85 HRESULT WINAPI
IDirectMusicPatternTrackImpl_SetPatternByName (LPDIRECTMUSICPATTERNTRACK iface
, IDirectMusicSegmentState
* pSegState
, WCHAR
* wszName
, IDirectMusicStyle
* pStyle
, DWORD dwPatternType
, DWORD
* pdwLength
)
87 ICOM_THIS(IDirectMusicPatternTrackImpl
,iface
);
89 FIXME("(%p, %p, %p, %p, %ld, %p): stub\n", This
, pSegState
, wszName
, pStyle
, dwPatternType
, pdwLength
);
94 ICOM_VTABLE(IDirectMusicPatternTrack
) DirectMusicPatternTrack_Vtbl
=
96 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
97 IDirectMusicPatternTrackImpl_QueryInterface
,
98 IDirectMusicPatternTrackImpl_AddRef
,
99 IDirectMusicPatternTrackImpl_Release
,
100 IDirectMusicPatternTrackImpl_CreateSegment
,
101 IDirectMusicPatternTrackImpl_SetVariation
,
102 IDirectMusicPatternTrackImpl_SetPatternByName
105 /* for ClassFactory */
106 HRESULT WINAPI
DMUSIC_CreateDirectMusicPatternTrack (LPCGUID lpcGUID
, LPDIRECTMUSICPATTERNTRACK
*ppDMPtrnTrack
, LPUNKNOWN pUnkOuter
)
108 if (IsEqualIID (lpcGUID
, &IID_IDirectMusicComposer
))
111 return E_NOINTERFACE
;
114 WARN("No interface found\n");
115 return E_NOINTERFACE
;