VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/dmplugin.h

最後變更 在這個檔案是 53206,由 vboxsync 提交於 10 年 前

Devices/vmsvga: header fixes

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 16.9 KB
 
1/*
2 * DirectMusic Performance Layer Plugins API
3 *
4 * Copyright (C) 2003-2004 Rok Mandeljc
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21/*
22 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
23 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
24 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
25 * a choice of LGPL license versions is made available with the language indicating
26 * that LGPLv2 or any later version may be used, or where a choice of which version
27 * of the LGPL is applied is otherwise unspecified.
28 */
29
30#ifndef __WINE_DMUSIC_PLUGIN_H
31#define __WINE_DMUSIC_PLUGIN_H
32
33#include <windows.h>
34
35#define COM_NO_WINDOWS_H
36#include <objbase.h>
37#include <mmsystem.h>
38#include <dmusici.h>
39#include <pshpack8.h>
40
41#ifdef __cplusplus
42extern "C" {
43#endif
44
45/*****************************************************************************
46 * Registry path
47 */
48#define DMUS_REGSTR_PATH_TOOLS "Software\\Microsoft\\DirectMusic\\Tools"
49
50
51/*****************************************************************************
52 * Predeclare the interfaces
53 */
54/* CLSIDs */
55DEFINE_GUID(CLSID_DirectMusicBandTrack, 0xd2ac2894,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
56DEFINE_GUID(CLSID_DirectMusicChordTrack, 0xd2ac288b,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
57DEFINE_GUID(CLSID_DirectMusicChordMapTrack, 0xd2ac2896,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
58DEFINE_GUID(CLSID_DirectMusicCommandTrack, 0xd2ac288c,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
59DEFINE_GUID(CLSID_DirectMusicLyricsTrack, 0x995c1cf5,0x54ff,0x11d3,0x8b,0xda,0x00,0x60,0x08,0x93,0xb1,0xb6);
60DEFINE_GUID(CLSID_DirectMusicMarkerTrack, 0x55a8fd00,0x4288,0x11d3,0x9b,0xd1,0x8a,0x0d,0x61,0xc8,0x88,0x35);
61DEFINE_GUID(CLSID_DirectMusicMotifTrack, 0xd2ac288e,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
62DEFINE_GUID(CLSID_DirectMusicMuteTrack, 0xd2ac2898,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
63DEFINE_GUID(CLSID_DirectMusicParamControlTrack, 0x4be0537b,0x5c19,0x11d3,0x8b,0xdc,0x00,0x60,0x08,0x93,0xb1,0xb6);
64DEFINE_GUID(CLSID_DirectMusicScriptTrack, 0x4108fa85,0x3586,0x11d3,0x8b,0xd7,0x00,0x60,0x08,0x93,0xb1,0xb6);
65DEFINE_GUID(CLSID_DirectMusicSegmentTriggerTrack, 0xbae4d665,0x4ea1,0x11d3,0x8b,0xda,0x00,0x60,0x08,0x93,0xb1,0xb6);
66DEFINE_GUID(CLSID_DirectMusicSeqTrack, 0xd2ac2886,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
67DEFINE_GUID(CLSID_DirectMusicSignPostTrack, 0xf17e8672,0xc3b4,0x11d1,0x87,0x0b,0x00,0x60,0x08,0x93,0xb1,0xbd);
68DEFINE_GUID(CLSID_DirectMusicStyleTrack, 0xd2ac288d,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
69DEFINE_GUID(CLSID_DirectMusicSysExTrack, 0xd2ac2887,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
70DEFINE_GUID(CLSID_DirectMusicTempoTrack, 0xd2ac2885,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
71DEFINE_GUID(CLSID_DirectMusicTimeSigTrack, 0xd2ac2888,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
72DEFINE_GUID(CLSID_DirectMusicWaveTrack, 0xeed36461,0x9ea5,0x11d3,0x9b,0xd1,0x00,0x80,0xc7,0x15,0x0a,0x74);
73/* MS doesn't support this in DX 9.0 and newer... but there's no harm in keeping it around */
74DEFINE_GUID(CLSID_DirectMusicMelodyFormulationTrack, 0xb0684266,0xb57f,0x11d2,0x97,0xf9,0x00,0xc0,0x4f,0xa3,0x6e,0x58);
75
76/* IIDs */
77DEFINE_GUID(IID_IDirectMusicTool, 0xd2ac28ba,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
78DEFINE_GUID(IID_IDirectMusicTool8, 0x0e674303,0x3b05,0x11d3,0x9b,0xd1,0xf9,0xe7,0xf0,0xa0,0x15,0x36);
79DEFINE_GUID(IID_IDirectMusicTrack, 0xf96029a1,0x4282,0x11d2,0x87,0x17,0x00,0x60,0x08,0x93,0xb1,0xbd);
80DEFINE_GUID(IID_IDirectMusicTrack8, 0x0e674304,0x3b05,0x11d3,0x9b,0xd1,0xf9,0xe7,0xf0,0xa0,0x15,0x36);
81
82/* typedef definitions */
83typedef struct IDirectMusicTrack *LPDIRECTMUSICTRACK;
84typedef struct IDirectMusicTrack8 *LPDIRECTMUSICTRACK8;
85typedef struct IDirectMusicTool *LPDIRECTMUSICTOOL;
86typedef struct IDirectMusicTool8 *LPDIRECTMUSICTOOL8;
87/* these are from dmusici.h and are needed here */
88typedef struct IDirectMusicPerformance *LPDIRECTMUSICPERFORMANCE;
89typedef struct IDirectMusicPerformance8 *LPDIRECTMUSICPERFORMANCE8;
90typedef struct IDirectMusicSegment *LPDIRECTMUSICSEGMENT;
91typedef struct IDirectMusicSegment8 *LPDIRECTMUSICSEGMENT8;
92typedef struct IDirectMusicSegmentState *LPDIRECTMUSICSEGMENTSTATE;
93typedef struct IDirectMusicSegmentState8 *LPDIRECTMUSICSEGMENTSTATE8;
94typedef struct IDirectMusicGraph *LPDIRECTMUSICGRAPH;
95typedef struct IDirectMusicGraph IDirectMusicGraph8, *LPDIRECTMUSICGRAPH8;
96
97
98/*****************************************************************************
99 * Typedef definitions
100 */
101typedef struct _DMUS_PMSG DMUS_PMSG;
102typedef LONG MUSIC_TIME;
103
104
105/*****************************************************************************
106 * Flags
107 */
108#define DMUS_TRACK_PARAMF_CLOCK 0x1
109
110/*****************************************************************************
111 * Enumerations
112 */
113/* typedef definitions */
114typedef enum enumDMUS_TRACKF_FLAGS DMUS_TRACKF_FLAGS;
115
116/* actual enumerations */
117enum enumDMUS_TRACKF_FLAGS {
118 DMUS_TRACKF_SEEK = 0x001,
119 DMUS_TRACKF_LOOP = 0x002,
120 DMUS_TRACKF_START = 0x004,
121 DMUS_TRACKF_FLUSH = 0x008,
122 DMUS_TRACKF_DIRTY = 0x010,
123 DMUS_TRACKF_NOTIFY_OFF = 0x020,
124 DMUS_TRACKF_PLAY_OFF = 0x040,
125 DMUS_TRACKF_LOOPEND = 0x080,
126 DMUS_TRACKF_STOP = 0x100,
127 DMUS_TRACKF_RECOMPOSE = 0x200,
128 DMUS_TRACKF_CLOCK = 0x400,
129};
130
131/*****************************************************************************
132 * IDirectMusicTool interface
133 */
134#define INTERFACE IDirectMusicTool
135DECLARE_INTERFACE_(IDirectMusicTool,IUnknown)
136{
137 /*** IUnknown methods ***/
138 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
139 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
140 STDMETHOD_(ULONG,Release)(THIS) PURE;
141 /*** IDirectMusicTool methods ***/
142 STDMETHOD(Init)(THIS_ struct IDirectMusicGraph *pGraph) PURE;
143 STDMETHOD(GetMsgDeliveryType)(THIS_ DWORD *pdwDeliveryType) PURE;
144 STDMETHOD(GetMediaTypeArraySize)(THIS_ DWORD *pdwNumElements) PURE;
145 STDMETHOD(GetMediaTypes)(THIS_ DWORD **padwMediaTypes, DWORD dwNumElements) PURE;
146 STDMETHOD(ProcessPMsg)(THIS_ struct IDirectMusicPerformance *pPerf, DMUS_PMSG *pPMSG) PURE;
147 STDMETHOD(Flush)(THIS_ struct IDirectMusicPerformance *pPerf, DMUS_PMSG *pPMSG, REFERENCE_TIME rtTime) PURE;
148};
149#undef INTERFACE
150
151#if !defined(__cplusplus) || defined(CINTERFACE)
152/*** IUnknown methods ***/
153#define IDirectMusicTool_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
154#define IDirectMusicTool_AddRef(p) (p)->lpVtbl->AddRef(p)
155#define IDirectMusicTool_Release(p) (p)->lpVtbl->Release(p)
156/*** IDirectMusicTool methods ***/
157#define IDirectMusicTool_Init(p,a) (p)->lpVtbl->Init(p,a)
158#define IDirectMusicTool_GetMsgDeliveryType(p,a) (p)->lpVtbl->GetMsgDeliveryType(p,a)
159#define IDirectMusicTool_GetMediaTypeArraySize(p,a) (p)->lpVtbl->GetMediaTypeArraySize(p,a)
160#define IDirectMusicTool_GetMediaTypes(p,a,b) (p)->lpVtbl->GetMediaTypes(p,a,b)
161#define IDirectMusicTool_ProcessPMsg(p,a,b) (p)->lpVtbl->ProcessPMsg(p,a,b)
162#define IDirectMusicTool_Flush(p,a,b,c) (p)->lpVtbl->Flush(p,a,b,c)
163#endif
164
165
166/*****************************************************************************
167 * IDirectMusicTool8 interface
168 */
169#define INTERFACE IDirectMusicTool8
170DECLARE_INTERFACE_(IDirectMusicTool8,IDirectMusicTool)
171{
172 /*** IUnknown methods ***/
173 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
174 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
175 STDMETHOD_(ULONG,Release)(THIS) PURE;
176 /*** IDirectMusicTool methods ***/
177 STDMETHOD(Init)(THIS_ struct IDirectMusicGraph *pGraph) PURE;
178 STDMETHOD(GetMsgDeliveryType)(THIS_ DWORD *pdwDeliveryType) PURE;
179 STDMETHOD(GetMediaTypeArraySize)(THIS_ DWORD *pdwNumElements) PURE;
180 STDMETHOD(GetMediaTypes)(THIS_ DWORD **padwMediaTypes, DWORD dwNumElements) PURE;
181 STDMETHOD(ProcessPMsg)(THIS_ struct IDirectMusicPerformance *pPerf, DMUS_PMSG *pPMSG) PURE;
182 STDMETHOD(Flush)(THIS_ struct IDirectMusicPerformance *pPerf, DMUS_PMSG *pPMSG, REFERENCE_TIME rtTime) PURE;
183 /*** IDirectMusicTool8 methods ***/
184 STDMETHOD(Clone)(THIS_ IDirectMusicTool **ppTool) PURE;
185};
186#undef INTERFACE
187
188#if !defined(__cplusplus) || defined(CINTERFACE)
189/*** IUnknown methods ***/
190#define IDirectMusicTool8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
191#define IDirectMusicTool8_AddRef(p) (p)->lpVtbl->AddRef(p)
192#define IDirectMusicTool8_Release(p) (p)->lpVtbl->Release(p)
193/*** IDirectMusicTool methods ***/
194#define IDirectMusicTool8_Init(p,a) (p)->lpVtbl->Init(p,a)
195#define IDirectMusicTool8_GetMsgDeliveryType(p,a) (p)->lpVtbl->GetMsgDeliveryType(p,a)
196#define IDirectMusicTool8_GetMediaTypeArraySize(p,a) (p)->lpVtbl->GetMediaTypeArraySize(p,a)
197#define IDirectMusicTool8_GetMediaTypes(p,a,b) (p)->lpVtbl->GetMediaTypes(p,a,b)
198#define IDirectMusicTool8_ProcessPMsg(p,a,b) (p)->lpVtbl->ProcessPMsg(p,a,b)
199#define IDirectMusicTool8_Flush(p,a,b) (p)->lpVtbl->Flush(p,a,b)
200/*** IDirectMusicTool8 methods ***/
201#define IDirectMusicTool8_Clone(p,a) (p)->lpVtbl->Clone(p,a)
202#endif
203
204
205/*****************************************************************************
206 * IDirectMusicTrack interface
207 */
208#define INTERFACE IDirectMusicTrack
209DECLARE_INTERFACE_(IDirectMusicTrack,IUnknown)
210{
211 /*** IUnknown methods ***/
212 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
213 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
214 STDMETHOD_(ULONG,Release)(THIS) PURE;
215 /*** IDirectMusicTrack methods ***/
216 STDMETHOD(Init)(THIS_ struct IDirectMusicSegment *pSegment) PURE;
217 STDMETHOD(InitPlay)(THIS_ struct IDirectMusicSegmentState *pSegmentState, struct IDirectMusicPerformance *pPerformance, void **ppStateData, DWORD dwVirtualTrackID, DWORD dwFlags) PURE;
218 STDMETHOD(EndPlay)(THIS_ void *pStateData) PURE;
219 STDMETHOD(Play)(THIS_ void *pStateData, MUSIC_TIME mtStart, MUSIC_TIME mtEnd, MUSIC_TIME mtOffset, DWORD dwFlags, struct IDirectMusicPerformance *pPerf, struct IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID) PURE;
220 STDMETHOD(GetParam)(THIS_ REFGUID rguidType, MUSIC_TIME mtTime, MUSIC_TIME *pmtNext, void *pParam) PURE;
221 STDMETHOD(SetParam)(THIS_ REFGUID rguidType, MUSIC_TIME mtTime, void *pParam) PURE;
222 STDMETHOD(IsParamSupported)(THIS_ REFGUID rguidType) PURE;
223 STDMETHOD(AddNotificationType)(THIS_ REFGUID rguidNotificationType) PURE;
224 STDMETHOD(RemoveNotificationType)(THIS_ REFGUID rguidNotificationType) PURE;
225 STDMETHOD(Clone)(THIS_ MUSIC_TIME mtStart, MUSIC_TIME mtEnd, IDirectMusicTrack **ppTrack) PURE;
226};
227#undef INTERFACE
228
229#if !defined(__cplusplus) || defined(CINTERFACE)
230/*** IUnknown methods ***/
231#define IDirectMusicTrack_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
232#define IDirectMusicTrack_AddRef(p) (p)->lpVtbl->AddRef(p)
233#define IDirectMusicTrack_Release(p) (p)->lpVtbl->Release(p)
234/*** IDirectMusicTrack methods ***/
235#define IDirectMusicTrack_Init(p,a) (p)->lpVtbl->Init(p,a)
236#define IDirectMusicTrack_InitPlay(p,a,b,c,d,e) (p)->lpVtbl->InitPlay(p,a,b,c,d,e)
237#define IDirectMusicTrack_EndPlay(p,a) (p)->lpVtbl->EndPlay(p,a)
238#define IDirectMusicTrack_Play(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->Play(p,a,b,c,d,e,f,g,h)
239#define IDirectMusicTrack_GetParam(p,a,b,c,d) (p)->lpVtbl->GetParam(p,a,b,c,d)
240#define IDirectMusicTrack_SetParam(p,a,b,c) (p)->lpVtbl->SetParam(p,a,b,c)
241#define IDirectMusicTrack_IsParamSupported(p,a) (p)->lpVtbl->IsParamSupported(p,a)
242#define IDirectMusicTrack_AddNotificationType(p,a) (p)->lpVtbl->AddNotificationType(p,a)
243#define IDirectMusicTrack_RemoveNotificationType(p,a) (p)->lpVtbl->RemoveNotificationType(p,a)
244#define IDirectMusicTrack_Clone(p,a,b,c) (p)->lpVtbl->Clone(p,a,b,c)
245#endif
246
247
248/*****************************************************************************
249 * IDirectMusicTrack8 interface
250 */
251#define INTERFACE IDirectMusicTrack8
252DECLARE_INTERFACE_(IDirectMusicTrack8,IDirectMusicTrack)
253{
254 /*** IUnknown methods ***/
255 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
256 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
257 STDMETHOD_(ULONG,Release)(THIS) PURE;
258 /*** IDirectMusicTrack methods ***/
259 STDMETHOD(Init)(THIS_ struct IDirectMusicSegment *pSegment) PURE;
260 STDMETHOD(InitPlay)(THIS_ struct IDirectMusicSegmentState *pSegmentState, struct IDirectMusicPerformance *pPerformance, void **ppStateData, DWORD dwVirtualTrackID, DWORD dwFlags) PURE;
261 STDMETHOD(EndPlay)(THIS_ void *pStateData) PURE;
262 STDMETHOD(Play)(THIS_ void *pStateData, MUSIC_TIME mtStart, MUSIC_TIME mtEnd, MUSIC_TIME mtOffset, DWORD dwFlags, struct IDirectMusicPerformance *pPerf, struct IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID) PURE;
263 STDMETHOD(GetParam)(THIS_ REFGUID rguidType, MUSIC_TIME mtTime, MUSIC_TIME *pmtNext, void *pParam) PURE;
264 STDMETHOD(SetParam)(THIS_ REFGUID rguidType, MUSIC_TIME mtTime, void *pParam) PURE;
265 STDMETHOD(IsParamSupported)(THIS_ REFGUID rguidType) PURE;
266 STDMETHOD(AddNotificationType)(THIS_ REFGUID rguidNotificationType) PURE;
267 STDMETHOD(RemoveNotificationType)(THIS_ REFGUID rguidNotificationType) PURE;
268 STDMETHOD(Clone)(THIS_ MUSIC_TIME mtStart, MUSIC_TIME mtEnd, IDirectMusicTrack **ppTrack) PURE;
269 /*** IDirectMusicTrack8 methods ***/
270 STDMETHOD(PlayEx)(THIS_ void *pStateData, REFERENCE_TIME rtStart, REFERENCE_TIME rtEnd, REFERENCE_TIME rtOffset, DWORD dwFlags, struct IDirectMusicPerformance *pPerf, struct IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID) PURE;
271 STDMETHOD(GetParamEx)(THIS_ REFGUID rguidType, REFERENCE_TIME rtTime, REFERENCE_TIME *prtNext, void *pParam, void *pStateData, DWORD dwFlags) PURE;
272 STDMETHOD(SetParamEx)(THIS_ REFGUID rguidType, REFERENCE_TIME rtTime, void *pParam, void *pStateData, DWORD dwFlags) PURE;
273 STDMETHOD(Compose)(THIS_ IUnknown *pContext, DWORD dwTrackGroup, IDirectMusicTrack **ppResultTrack) PURE;
274 STDMETHOD(Join)(THIS_ IDirectMusicTrack *pNewTrack, MUSIC_TIME mtJoin, IUnknown *pContext, DWORD dwTrackGroup, IDirectMusicTrack **ppResultTrack) PURE;
275};
276#undef INTERFACE
277
278#if !defined(__cplusplus) || defined(CINTERFACE)
279/*** IUnknown methods ***/
280#define IDirectMusicTrack8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
281#define IDirectMusicTrack8_AddRef(p) (p)->lpVtbl->AddRef(p)
282#define IDirectMusicTrack8_Release(p) (p)->lpVtbl->Release(p)
283/*** IDirectMusicTrack methods ***/
284#define IDirectMusicTrack8_Init(p,a) (p)->lpVtbl->Init(p,a)
285#define IDirectMusicTrack8_InitPlay(p,a,b,c,d,e) (p)->lpVtbl->InitPlay(p,a,b,c,d,e)
286#define IDirectMusicTrack8_EndPlay(p,a) (p)->lpVtbl->EndPlay(p,a)
287#define IDirectMusicTrack8_Play(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->Play(p,a,b,c,d,e,f,g,h)
288#define IDirectMusicTrack8_GetParam(p,a,b,c,d) (p)->lpVtbl->GetParam(p,a,b,c,d)
289#define IDirectMusicTrack8_SetParam(p,a,b,c) (p)->lpVtbl->SetParam(p,a,b,c)
290#define IDirectMusicTrack8_IsParamSupported(p,a) (p)->lpVtbl->IsParamSupported(p,a)
291#define IDirectMusicTrack8_AddNotificationType(p,a) (p)->lpVtbl->AddNotificationType(p,a)
292#define IDirectMusicTrack8_RemoveNotificationType(p,a) (p)->lpVtbl->RemoveNotificationType(p,a)
293#define IDirectMusicTrack8_Clone(p,a,b,c) (p)->lpVtbl->Clone(p,a,b,c)
294/*** IDirectMusicTrack8 methods ***/
295#define IDirectMusicTrack8_PlayEx(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->PlayEx(p,a,b,c,d,e,f,g,h)
296#define IDirectMusicTrack8_GetParamEx(p,a,b,c,d,e,f) (p)->lpVtbl->GetParamEx(p,a,b,c,d,e,f)
297#define IDirectMusicTrack8_SetParamEx(p,a,b,c,d,e) (p)->lpVtbl->SetParamEx(p,a,b,c,d,e)
298#define IDirectMusicTrack8_Compose(p,a,b,c) (p)->lpVtbl->Compose(p,a,b,c)
299#define IDirectMusicTrack8_Join(p,a,b,c,d,e) (p)->lpVtbl->Join(p,a,b,c,d,e)
300#endif
301
302#ifdef __cplusplus
303}
304#endif
305
306#include <poppack.h>
307
308#endif /* __WINE_DMUSIC_PLUGIN_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette