2 * Copyright 1998, Luiz Otavio L. Zorzella
5 * Purpose: multimedia declarations (internal to WINMM & MMSYSTEM DLLs)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 /* Who said goofy boy ? */
29 #define WINE_DI_MAGIC 0x900F1B01
31 typedef struct tagWINE_DRIVER
34 /* as usual LPWINE_DRIVER == hDriver32 */
39 struct tagWINE_DRIVER
* lpPrevItem
;
40 struct tagWINE_DRIVER
* lpNextItem
;
41 } WINE_DRIVER
, *LPWINE_DRIVER
;
43 typedef DWORD (CALLBACK
*WINEMM_msgFunc32
)(UINT
, UINT
, DWORD_PTR
, DWORD_PTR
, DWORD_PTR
);
45 /* for each loaded driver and each known type of driver, this structure contains
46 * the information needed to access it
48 typedef struct tagWINE_MM_DRIVER_PART
{
49 int nIDMin
; /* lower bound of global indexes for this type */
50 int nIDMax
; /* hhigher bound of global indexes for this type */
51 WINEMM_msgFunc32 fnMessage32
; /* pointer to function */
52 } WINE_MM_DRIVER_PART
;
56 #define MMDRV_MIDIIN 2
57 #define MMDRV_MIDIOUT 3
58 #define MMDRV_WAVEIN 4
59 #define MMDRV_WAVEOUT 5
62 /* each low-level .drv will be associated with an instance of this structure */
63 typedef struct tagWINE_MM_DRIVER
{
65 LPSTR drvname
; /* name of the driver */
66 unsigned bIsMapper
: 1; /* TRUE if mapper */
67 WINE_MM_DRIVER_PART parts
[MMDRV_MAX
];/* Information for all known types */
68 } WINE_MM_DRIVER
, *LPWINE_MM_DRIVER
;
70 typedef struct tagWINE_MLD
{
71 /* EPP struct tagWINE_MLD* lpNext; */ /* not used so far */
74 UINT mmdIndex
; /* index to low-level driver in MMDrvs table */
75 DWORD_PTR dwDriverInstance
; /* this value is driver related, as opposed to
76 * opendesc.dwInstance which is client (callback) related */
79 DWORD_PTR dwClientInstance
;
80 } WINE_MLD
, *LPWINE_MLD
;
84 } WINE_WAVE
, *LPWINE_WAVE
;
88 MIDIOPENDESC mod
; /* FIXME: should be removed */
89 } WINE_MIDI
, *LPWINE_MIDI
;
93 } WINE_MIXER
, *LPWINE_MIXER
;
95 typedef struct tagWINE_MCIDRIVER
{
98 LPWSTR lpstrElementName
;
99 LPWSTR lpstrDeviceType
;
103 YIELDPROC lpfnYieldProc
;
107 UINT uSpecificCmdTable
;
108 struct tagWINE_MCIDRIVER
*lpNext
;
109 } WINE_MCIDRIVER
, *LPWINE_MCIDRIVER
;
113 struct IOProcList
*pNext
; /* Next item in linked list */
114 FOURCC fourCC
; /* four-character code identifying IOProc */
115 LPMMIOPROC pIOProc
; /* pointer to IProc */
116 BOOL is_unicode
; /* 32A or 32W */
117 int count
; /* number of objects linked to it */
120 typedef struct tagWINE_MMIO
{
122 struct tagWINE_MMIO
* lpNext
;
123 struct IOProcList
* ioProc
;
124 unsigned bTmpIOProc
: 1,
127 } WINE_MMIO
, *LPWINE_MMIO
;
129 /* function prototypes */
131 LPWINE_DRIVER
DRIVER_FindFromHDrvr(HDRVR hDrvr
);
132 BOOL
DRIVER_GetLibName(LPCWSTR keyName
, LPCWSTR sectName
, LPWSTR buf
, int sz
);
133 LPWINE_DRIVER
DRIVER_TryOpenDriver32(LPCWSTR fn
, LPARAM lParam2
);
134 void DRIVER_UnloadAll(void);
136 void MMDRV_Exit(void);
137 UINT
MMDRV_GetNum(UINT
);
138 LPWINE_MLD
MMDRV_Alloc(UINT size
, UINT type
, LPHANDLE hndl
, DWORD
* dwFlags
,
139 DWORD_PTR
* dwCallback
, DWORD_PTR
* dwInstance
);
140 void MMDRV_Free(HANDLE hndl
, LPWINE_MLD mld
);
141 DWORD
MMDRV_Open(LPWINE_MLD mld
, UINT wMsg
, DWORD_PTR dwParam1
, DWORD dwParam2
);
142 DWORD
MMDRV_Close(LPWINE_MLD mld
, UINT wMsg
);
143 LPWINE_MLD
MMDRV_Get(HANDLE hndl
, UINT type
, BOOL bCanBeID
);
144 LPWINE_MLD
MMDRV_GetRelated(HANDLE hndl
, UINT srcType
, BOOL bSrcCanBeID
, UINT dstTyped
);
145 DWORD
MMDRV_Message(LPWINE_MLD mld
, UINT wMsg
, DWORD_PTR dwParam1
, DWORD_PTR dwParam2
);
146 UINT
MMDRV_PhysicalFeatures(LPWINE_MLD mld
, UINT uMsg
, DWORD_PTR dwParam1
, DWORD_PTR dwParam2
);
148 const char* MCI_MessageToString(UINT wMsg
);
149 DWORD
MCI_SendCommand(UINT wDevID
, UINT16 wMsg
, DWORD_PTR dwParam1
, DWORD_PTR dwParam2
);
150 LPWSTR
MCI_strdupAtoW(LPCSTR str
);
151 LPSTR
MCI_strdupWtoA(LPCWSTR str
);
153 const char* WINMM_ErrorToString(MMRESULT error
);
155 void TIME_MMTimeStop(void);
157 /* Global variables */
158 extern CRITICAL_SECTION WINMM_cs
;
159 extern HINSTANCE hWinMM32Instance
;
160 extern HANDLE psLastEvent
;
161 extern HANDLE psStopEvent
;
163 /* GetDriverFlags() returned bits is not documented (nor the call itself)
164 * Here are Wine only definitions of the bits
166 #define WINE_GDF_EXIST 0x80000000
167 #define WINE_GDF_EXTERNAL_MASK 0xF0000000
168 #define WINE_GDF_SESSION 0x00000001