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"
37 #include "wine/unicode.h"
45 /*****************************************************************************
48 extern HRESULT WINAPI
create_dmband(REFIID riid
, void **ret_iface
) DECLSPEC_HIDDEN
;
49 extern HRESULT WINAPI
create_dmbandtrack(REFIID riid
, void **ret_iface
) DECLSPEC_HIDDEN
;
52 /*****************************************************************************
53 * Auxiliary definitions
55 /* i don't like M$'s idea about two different band item headers, so behold: universal one */
56 typedef struct _DMUS_PRIVATE_BAND_ITEM_HEADER
{
57 DWORD dwVersion
; /* 1 or 2 */
61 MUSIC_TIME lBandTimeLogical
;
62 MUSIC_TIME lBandTimePhysical
;
63 } DMUS_PRIVATE_BAND_ITEM_HEADER
;
65 typedef struct _DMUS_PRIVATE_INSTRUMENT
{
66 struct list entry
; /* for listing elements */
67 DMUS_IO_INSTRUMENT pInstrument
;
68 IDirectMusicCollection
* ppReferenceCollection
;
69 } DMUS_PRIVATE_INSTRUMENT
, *LPDMUS_PRIVATE_INSTRUMENT
;
71 typedef struct _DMUS_PRIVATE_BAND
{
72 struct list entry
; /* for listing elements */
73 DMUS_PRIVATE_BAND_ITEM_HEADER BandHeader
;
74 IDirectMusicBand
*band
;
75 } DMUS_PRIVATE_BAND
, *LPDMUS_PRIVATE_BAND
;
78 /**********************************************************************
79 * Dll lifetime tracking declaration for dmband.dll
81 extern LONG DMBAND_refCount DECLSPEC_HIDDEN
;
82 static inline void DMBAND_LockModule(void) { InterlockedIncrement( &DMBAND_refCount
); }
83 static inline void DMBAND_UnlockModule(void) { InterlockedDecrement( &DMBAND_refCount
); }
85 /*****************************************************************************
91 #endif /* __WINE_DMBAND_PRIVATE_H */