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 #define WINE_DEFAULT_WINMM_DRIVER "alsa,oss,coreaudio,esd"
29 #define WINE_DEFAULT_WINMM_MAPPER "msacm32.drv"
30 #define WINE_DEFAULT_WINMM_MIDI "midimap.dll"
32 /* Who said goofy boy ? */
33 #define WINE_DI_MAGIC 0x900F1B01
35 typedef struct tagWINE_DRIVER
38 /* as usual LPWINE_DRIVER == hDriver32 */
43 struct tagWINE_DRIVER
* lpPrevItem
;
44 struct tagWINE_DRIVER
* lpNextItem
;
45 } WINE_DRIVER
, *LPWINE_DRIVER
;
47 typedef DWORD (CALLBACK
*WINEMM_msgFunc32
)(UINT
, UINT
, DWORD_PTR
, DWORD_PTR
, DWORD_PTR
);
49 /* for each loaded driver and each known type of driver, this structure contains
50 * the information needed to access it
52 typedef struct tagWINE_MM_DRIVER_PART
{
53 int nIDMin
; /* lower bound of global indexes for this type */
54 int nIDMax
; /* hhigher bound of global indexes for this type */
55 WINEMM_msgFunc32 fnMessage32
; /* pointer to function */
56 } WINE_MM_DRIVER_PART
;
60 #define MMDRV_MIDIIN 2
61 #define MMDRV_MIDIOUT 3
62 #define MMDRV_WAVEIN 4
63 #define MMDRV_WAVEOUT 5
66 /* each low-level .drv will be associated with an instance of this structure */
67 typedef struct tagWINE_MM_DRIVER
{
69 LPSTR drvname
; /* name of the driver */
70 unsigned bIsMapper
: 1; /* TRUE if mapper */
71 WINE_MM_DRIVER_PART parts
[MMDRV_MAX
];/* Information for all known types */
72 } WINE_MM_DRIVER
, *LPWINE_MM_DRIVER
;
74 typedef struct tagWINE_MLD
{
75 /* EPP struct tagWINE_MLD* lpNext; */ /* not used so far */
78 UINT mmdIndex
; /* index to low-level driver in MMDrvs table */
79 DWORD_PTR dwDriverInstance
; /* this value is driver related, as opposed to
80 * opendesc.dwInstance which is client (callback) related */
83 DWORD_PTR dwClientInstance
;
84 } WINE_MLD
, *LPWINE_MLD
;
88 } WINE_WAVE
, *LPWINE_WAVE
;
92 MIDIOPENDESC mod
; /* FIXME: should be removed */
93 } WINE_MIDI
, *LPWINE_MIDI
;
97 } WINE_MIXER
, *LPWINE_MIXER
;
99 typedef struct tagWINE_MCIDRIVER
{
102 LPWSTR lpstrElementName
;
103 LPWSTR lpstrDeviceType
;
107 YIELDPROC lpfnYieldProc
;
111 UINT uSpecificCmdTable
;
112 struct tagWINE_MCIDRIVER
*lpNext
;
113 } WINE_MCIDRIVER
, *LPWINE_MCIDRIVER
;
117 struct IOProcList
*pNext
; /* Next item in linked list */
118 FOURCC fourCC
; /* four-character code identifying IOProc */
119 LPMMIOPROC pIOProc
; /* pointer to IProc */
120 BOOL is_unicode
; /* 32A or 32W */
121 int count
; /* number of objects linked to it */
124 typedef struct tagWINE_MMIO
{
126 struct tagWINE_MMIO
* lpNext
;
127 struct IOProcList
* ioProc
;
128 unsigned bTmpIOProc
: 1,
131 } WINE_MMIO
, *LPWINE_MMIO
;
133 /* function prototypes */
135 LPWINE_DRIVER
DRIVER_FindFromHDrvr(HDRVR hDrvr
);
136 BOOL
DRIVER_GetLibName(LPCWSTR keyName
, LPCWSTR sectName
, LPWSTR buf
, int sz
);
137 LPWINE_DRIVER
DRIVER_TryOpenDriver32(LPCWSTR fn
, LPARAM lParam2
);
138 void DRIVER_UnloadAll(void);
140 BOOL
MMDRV_Init(void);
141 void MMDRV_Exit(void);
142 UINT
MMDRV_GetNum(UINT
);
143 LPWINE_MLD
MMDRV_Alloc(UINT size
, UINT type
, LPHANDLE hndl
, DWORD
* dwFlags
,
144 DWORD_PTR
* dwCallback
, DWORD_PTR
* dwInstance
);
145 void MMDRV_Free(HANDLE hndl
, LPWINE_MLD mld
);
146 DWORD
MMDRV_Open(LPWINE_MLD mld
, UINT wMsg
, DWORD_PTR dwParam1
, DWORD dwParam2
);
147 DWORD
MMDRV_Close(LPWINE_MLD mld
, UINT wMsg
);
148 LPWINE_MLD
MMDRV_Get(HANDLE hndl
, UINT type
, BOOL bCanBeID
);
149 LPWINE_MLD
MMDRV_GetRelated(HANDLE hndl
, UINT srcType
, BOOL bSrcCanBeID
, UINT dstTyped
);
150 DWORD
MMDRV_Message(LPWINE_MLD mld
, UINT wMsg
, DWORD_PTR dwParam1
, DWORD_PTR dwParam2
);
151 UINT
MMDRV_PhysicalFeatures(LPWINE_MLD mld
, UINT uMsg
, DWORD_PTR dwParam1
, DWORD_PTR dwParam2
);
153 const char* MCI_MessageToString(UINT wMsg
);
154 DWORD
MCI_SendCommand(UINT wDevID
, UINT16 wMsg
, DWORD_PTR dwParam1
, DWORD_PTR dwParam2
);
155 LPWSTR
MCI_strdupAtoW(LPCSTR str
);
156 LPSTR
MCI_strdupWtoA(LPCWSTR str
);
158 const char* WINMM_ErrorToString(MMRESULT error
);
160 void TIME_MMTimeStop(void);
162 /* Global variables */
163 extern CRITICAL_SECTION WINMM_cs
;
164 extern HINSTANCE hWinMM32Instance
;
165 extern HANDLE psLastEvent
;
166 extern HANDLE psStopEvent
;
168 /* GetDriverFlags() returned bits is not documented (nor the call itself)
169 * Here are Wine only definitions of the bits
171 #define WINE_GDF_EXIST 0x80000000
172 #define WINE_GDF_EXTERNAL_MASK 0xF0000000
173 #define WINE_GDF_SESSION 0x00000001