1 /* DirectMusicSynthesizer Private Include
3 * Copyright (C) 2003-2004 Rok Mandeljc
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #ifndef __WINE_DMSYNTH_PRIVATE_H
21 #define __WINE_DMSYNTH_PRIVATE_H
33 #include "wine/debug.h"
34 #include "wine/list.h"
35 #include "wine/unicode.h"
43 /*****************************************************************************
46 typedef struct IDirectMusicSynth8Impl IDirectMusicSynth8Impl
;
47 typedef struct IDirectMusicSynthSinkImpl IDirectMusicSynthSinkImpl
;
49 /*****************************************************************************
52 extern HRESULT WINAPI
DMUSIC_CreateDirectMusicSynthImpl (LPCGUID lpcGUID
, LPVOID
* ppobj
, LPUNKNOWN pUnkOuter
);
53 extern HRESULT WINAPI
DMUSIC_CreateDirectMusicSynthSinkImpl (LPCGUID lpcGUID
, LPVOID
* ppobj
, LPUNKNOWN pUnkOuter
);
55 /*****************************************************************************
56 * IDirectMusicSynth8Impl implementation structure
58 struct IDirectMusicSynth8Impl
{
60 const IDirectMusicSynth8Vtbl
*lpVtbl
;
63 /* IDirectMusicSynth8 fields */
66 IReferenceClock
* pLatencyClock
;
67 IDirectMusicSynthSinkImpl
* pSynthSink
;
70 /*****************************************************************************
71 * IDirectMusicSynthSinkImpl implementation structure
73 struct IDirectMusicSynthSinkImpl
{
75 const IDirectMusicSynthSinkVtbl
*lpVtbl
;
78 /* IDirectMusicSynthSinkImpl fields */
81 /**********************************************************************
82 * Dll lifetime tracking declaration for dmsynth.dll
84 extern LONG DMSYNTH_refCount
;
85 static inline void DMSYNTH_LockModule(void) { InterlockedIncrement( &DMSYNTH_refCount
); }
86 static inline void DMSYNTH_UnlockModule(void) { InterlockedDecrement( &DMSYNTH_refCount
); }
88 /*****************************************************************************
91 /* used for generic dumping (copied from ddraw) */
102 /* used for initialising structs (primarily for DMUS_OBJECTDESC) */
103 #define DM_STRUCT_INIT(x) \
105 memset((x), 0, sizeof(*(x))); \
106 (x)->dwSize = sizeof(*x); \
109 #define FE(x) { x, #x }
110 #define GE(x) { &x, #x }
112 /* returns name of given GUID */
113 extern const char *debugstr_dmguid (const GUID
*id
);
115 #endif /* __WINE_DMSYNTH_PRIVATE_H */