1 /* DirectMusicBand 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_DMBAND_PRIVATE_H
21 #define __WINE_DMBAND_PRIVATE_H
35 #include "wine/debug.h"
36 #include "wine/list.h"
44 /*****************************************************************************
47 extern HRESULT WINAPI
create_dmband(REFIID riid
, void **ret_iface
) DECLSPEC_HIDDEN
;
48 extern HRESULT WINAPI
create_dmbandtrack(REFIID riid
, void **ret_iface
) DECLSPEC_HIDDEN
;
51 /*****************************************************************************
52 * Auxiliary definitions
54 /* i don't like M$'s idea about two different band item headers, so behold: universal one */
55 typedef struct _DMUS_PRIVATE_BAND_ITEM_HEADER
{
56 DWORD dwVersion
; /* 1 or 2 */
60 MUSIC_TIME lBandTimeLogical
;
61 MUSIC_TIME lBandTimePhysical
;
62 } DMUS_PRIVATE_BAND_ITEM_HEADER
;
64 typedef struct _DMUS_PRIVATE_INSTRUMENT
{
65 struct list entry
; /* for listing elements */
66 DMUS_IO_INSTRUMENT pInstrument
;
67 IDirectMusicCollection
* ppReferenceCollection
;
68 } DMUS_PRIVATE_INSTRUMENT
, *LPDMUS_PRIVATE_INSTRUMENT
;
70 typedef struct _DMUS_PRIVATE_BAND
{
71 struct list entry
; /* for listing elements */
72 DMUS_PRIVATE_BAND_ITEM_HEADER BandHeader
;
73 IDirectMusicBand
*band
;
74 } DMUS_PRIVATE_BAND
, *LPDMUS_PRIVATE_BAND
;
77 /**********************************************************************
78 * Dll lifetime tracking declaration for dmband.dll
80 extern LONG DMBAND_refCount DECLSPEC_HIDDEN
;
81 static inline void DMBAND_LockModule(void) { InterlockedIncrement( &DMBAND_refCount
); }
82 static inline void DMBAND_UnlockModule(void) { InterlockedDecrement( &DMBAND_refCount
); }
84 /*****************************************************************************
90 #endif /* __WINE_DMBAND_PRIVATE_H */