2 * MMSYSTEM - Multimedia Wine Extension ... :-)
4 * Copyright (C) the Wine project
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __WINE_MMSYSTEM_H
22 #define __WINE_MMSYSTEM_H
28 typedef LPSTR HPSTR
; /* a huge version of LPSTR */
29 typedef LPCSTR HPCSTR
; /* a huge version of LPCSTR */
32 DECLARE_HANDLE(HDRVR
);
33 DECLARE_HANDLE(HWAVE
);
34 DECLARE_HANDLE(HWAVEIN
);
35 DECLARE_HANDLE(HWAVEOUT
);
36 DECLARE_HANDLE(HMIDI
);
37 DECLARE_HANDLE(HMIDIIN
);
38 DECLARE_HANDLE(HMIDIOUT
);
39 DECLARE_HANDLE(HMIDISTRM
);
40 DECLARE_HANDLE(HMIXER
);
41 DECLARE_HANDLE(HMIXEROBJ
);
42 DECLARE_HANDLE(HMMIO
);
44 typedef HMIDI
*LPHMIDI
;
45 typedef HMIDIIN
*LPHMIDIIN
;
46 typedef HMIDIOUT
*LPHMIDIOUT
;
47 typedef HMIDISTRM
*LPHMIDISTRM
;
48 typedef HMIXER
*LPHMIXER
;
49 typedef HMIXEROBJ
*LPHMIXEROBJ
;
50 typedef HWAVEIN
*LPHWAVEIN
;
51 typedef HWAVEOUT
*LPHWAVEOUT
;
55 typedef LRESULT (CALLBACK
*DRIVERPROC
)(DWORD_PTR
,HDRVR
,UINT
,LPARAM
,LPARAM
);
57 #define MAXWAVEDRIVERS 10
58 #define MAXMIDIDRIVERS 10
59 #define MAXAUXDRIVERS 10
60 #define MAXMCIDRIVERS 32
61 #define MAXMIXERDRIVERS 10
63 #define MAXPNAMELEN 32 /* max product name length (including NULL) */
64 #define MAXERRORLENGTH 128 /* max error text length (including NULL) */
65 #define MAX_JOYSTICKOEMVXDNAME 260
69 typedef DWORD MCIERROR
;
71 typedef UINT MMVERSION
;
74 typedef UINT MCIDEVICEID
;
76 typedef UINT MMRESULT
;
100 #define TIME_MS 0x0001 /* time in milliseconds */
101 #define TIME_SAMPLES 0x0002 /* number of wave samples */
102 #define TIME_BYTES 0x0004 /* current byte offset */
103 #define TIME_SMPTE 0x0008 /* SMPTE time */
104 #define TIME_MIDI 0x0010 /* MIDI time */
105 #define TIME_TICKS 0x0020 /* MIDI ticks */
107 #define MM_JOY1MOVE 0x3A0 /* joystick */
108 #define MM_JOY2MOVE 0x3A1
109 #define MM_JOY1ZMOVE 0x3A2
110 #define MM_JOY2ZMOVE 0x3A3
111 #define MM_JOY1BUTTONDOWN 0x3B5
112 #define MM_JOY2BUTTONDOWN 0x3B6
113 #define MM_JOY1BUTTONUP 0x3B7
114 #define MM_JOY2BUTTONUP 0x3B8
116 #define MM_MCINOTIFY 0x3B9 /* MCI */
118 #define MM_WOM_OPEN 0x3BB /* waveform output */
119 #define MM_WOM_CLOSE 0x3BC
120 #define MM_WOM_DONE 0x3BD
122 #define MM_WIM_OPEN 0x3BE /* waveform input */
123 #define MM_WIM_CLOSE 0x3BF
124 #define MM_WIM_DATA 0x3C0
126 #define MM_MIM_OPEN 0x3C1 /* MIDI input */
127 #define MM_MIM_CLOSE 0x3C2
128 #define MM_MIM_DATA 0x3C3
129 #define MM_MIM_LONGDATA 0x3C4
130 #define MM_MIM_ERROR 0x3C5
131 #define MM_MIM_LONGERROR 0x3C6
133 #define MM_MOM_OPEN 0x3C7 /* MIDI output */
134 #define MM_MOM_CLOSE 0x3C8
135 #define MM_MOM_DONE 0x3C9
136 #define MM_MOM_POSITIONCB 0x3CA
138 #define MM_MIM_MOREDATA 0x3CC
140 #define MM_MIXM_LINE_CHANGE 0x3D0
141 #define MM_MIXM_CONTROL_CHANGE 0x3D1
143 #define MMSYSERR_BASE 0
144 #define WAVERR_BASE 32
145 #define MIDIERR_BASE 64
146 #define TIMERR_BASE 96
147 #define JOYERR_BASE 160
148 #define MCIERR_BASE 256
150 #define MCI_STRING_OFFSET 512
151 #define MCI_VD_OFFSET 1024
152 #define MCI_CD_OFFSET 1088
153 #define MCI_WAVE_OFFSET 1152
154 #define MCI_SEQ_OFFSET 1216
156 #define MMSYSERR_NOERROR 0 /* no error */
157 #define MMSYSERR_ERROR (MMSYSERR_BASE + 1) /* unspecified error */
158 #define MMSYSERR_BADDEVICEID (MMSYSERR_BASE + 2) /* device ID out of range */
159 #define MMSYSERR_NOTENABLED (MMSYSERR_BASE + 3) /* driver failed enable */
160 #define MMSYSERR_ALLOCATED (MMSYSERR_BASE + 4) /* device already allocated */
161 #define MMSYSERR_INVALHANDLE (MMSYSERR_BASE + 5) /* device handle is invalid */
162 #define MMSYSERR_NODRIVER (MMSYSERR_BASE + 6) /* no device driver present */
163 #define MMSYSERR_NOMEM (MMSYSERR_BASE + 7) /* memory allocation error */
164 #define MMSYSERR_NOTSUPPORTED (MMSYSERR_BASE + 8) /* function isn't supported */
165 #define MMSYSERR_BADERRNUM (MMSYSERR_BASE + 9) /* error value out of range */
166 #define MMSYSERR_INVALFLAG (MMSYSERR_BASE + 10) /* invalid flag passed */
167 #define MMSYSERR_INVALPARAM (MMSYSERR_BASE + 11) /* invalid parameter passed */
168 #define MMSYSERR_LASTERROR (MMSYSERR_BASE + 11) /* last error in range */
170 #define CALLBACK_TYPEMASK 0x00070000l /* callback type mask */
171 #define CALLBACK_NULL 0x00000000l /* no callback */
172 #define CALLBACK_WINDOW 0x00010000l /* dwCallback is a HWND */
173 #define CALLBACK_TASK 0x00020000l /* dwCallback is a HTASK */
174 #define CALLBACK_THREAD (CALLBACK_TASK) /* dwCallback is a thread ID */
175 #define CALLBACK_FUNCTION 0x00030000l /* dwCallback is a FARPROC */
176 #define CALLBACK_EVENT 0x00050000l /* dwCallback is an EVENT Handler */
178 #define DRV_LOAD 0x0001
179 #define DRV_ENABLE 0x0002
180 #define DRV_OPEN 0x0003
181 #define DRV_CLOSE 0x0004
182 #define DRV_DISABLE 0x0005
183 #define DRV_FREE 0x0006
184 #define DRV_CONFIGURE 0x0007
185 #define DRV_QUERYCONFIGURE 0x0008
186 #define DRV_INSTALL 0x0009
187 #define DRV_REMOVE 0x000A
188 #define DRV_EXITSESSION 0x000B
189 #define DRV_EXITAPPLICATION 0x000C
190 #define DRV_POWER 0x000F
192 #define DRV_RESERVED 0x0800
193 #define DRV_USER 0x4000
195 #define DRVCNF_CANCEL 0x0000
196 #define DRVCNF_OK 0x0001
197 #define DRVCNF_RESTART 0x0002
199 #define DRVEA_NORMALEXIT 0x0001
200 #define DRVEA_ABNORMALEXIT 0x0002
202 #define DRV_SUCCESS 0x0001
203 #define DRV_FAILURE 0x0000
205 #define GND_FIRSTINSTANCEONLY 0x00000001
207 #define GND_FORWARD 0x00000000
208 #define GND_REVERSE 0x00000002
212 LPCWSTR lpszDCISectionName
;
213 LPCWSTR lpszDCIAliasName
;
214 } DRVCONFIGINFO
, *LPDRVCONFIGINFO
;
217 LRESULT WINAPI
DefDriverProc(DWORD_PTR
,HDRVR
,UINT
,LPARAM
,LPARAM
);
218 /* this sounds odd, but it's the way it is. OpenDriverA even disappeared
221 HDRVR WINAPI
OpenDriverA(LPCSTR szDriverName
, LPCSTR szSectionName
,
223 HDRVR WINAPI
OpenDriver(LPCWSTR szDriverName
, LPCWSTR szSectionName
,
225 LRESULT WINAPI
CloseDriver(HDRVR hDriver
, LPARAM lParam1
, LPARAM lParam2
);
226 LRESULT WINAPI
SendDriverMessage(HDRVR hDriver
, UINT message
,
227 LPARAM lParam1
, LPARAM lParam2
);
228 HMODULE WINAPI
GetDriverModuleHandle(HDRVR hDriver
);
230 DWORD WINAPI
GetDriverFlags(HDRVR hDriver
);
232 typedef void (CALLBACK
*LPDRVCALLBACK
)(HDRVR
,UINT
,DWORD_PTR
,DWORD_PTR
,DWORD_PTR
);
234 #define MM_MICROSOFT 1 /* Microsoft Corp. */
236 #define MM_MIDI_MAPPER 1 /* MIDI Mapper */
237 #define MM_WAVE_MAPPER 2 /* Wave Mapper */
239 #define MM_SNDBLST_MIDIOUT 3 /* Sound Blaster MIDI output port */
240 #define MM_SNDBLST_MIDIIN 4 /* Sound Blaster MIDI input port */
241 #define MM_SNDBLST_SYNTH 5 /* Sound Blaster internal synthesizer */
242 #define MM_SNDBLST_WAVEOUT 6 /* Sound Blaster waveform output */
243 #define MM_SNDBLST_WAVEIN 7 /* Sound Blaster waveform input */
245 #define MM_ADLIB 9 /* Ad Lib-compatible synthesizer */
247 #define MM_MPU401_MIDIOUT 10 /* MPU401-compatible MIDI output port */
248 #define MM_MPU401_MIDIIN 11 /* MPU401-compatible MIDI input port */
250 #define MM_PC_JOYSTICK 12 /* Joystick adapter */
253 UINT WINAPI
mmsystemGetVersion(void);
254 BOOL WINAPI
sndPlaySoundA(LPCSTR lpszSound
, UINT fuSound
);
255 BOOL WINAPI
sndPlaySoundW(LPCWSTR lpszSound
, UINT fuSound
);
256 #define sndPlaySound WINELIB_NAME_AW(sndPlaySound)
257 BOOL WINAPI
PlaySoundA(LPCSTR pszSound
, HMODULE hmod
, DWORD fdwSound
);
258 BOOL WINAPI
PlaySoundW(LPCWSTR pszSound
, HMODULE hmod
, DWORD fdwSound
);
259 #define PlaySound WINELIB_NAME_AW(PlaySound)
261 #define SND_SYNC 0x0000 /* play synchronously (default) */
262 #define SND_ASYNC 0x0001 /* play asynchronously */
263 #define SND_NODEFAULT 0x0002 /* don't use default sound */
264 #define SND_MEMORY 0x0004 /* lpszSoundName points to a memory file */
265 #define SND_LOOP 0x0008 /* loop the sound until next sndPlaySound */
266 #define SND_NOSTOP 0x0010 /* don't stop any currently playing sound */
268 #define SND_NOWAIT 0x00002000L /* don't wait if the driver is busy */
269 #define SND_ALIAS 0x00010000L /* name is a registry alias */
270 #define SND_ALIAS_ID 0x00110000L /* alias is a predefined ID */
271 #define SND_FILENAME 0x00020000L /* name is file name */
272 #define SND_RESOURCE 0x00040004L /* name is resource name or atom */
273 #define SND_PURGE 0x00000040L /* purge all sounds */
274 #define SND_APPLICATION 0x00000080L /* look for application specific association */
276 /* waveform audio error return values */
277 #define WAVERR_BADFORMAT (WAVERR_BASE + 0) /* unsupported wave format */
278 #define WAVERR_STILLPLAYING (WAVERR_BASE + 1) /* still something playing */
279 #define WAVERR_UNPREPARED (WAVERR_BASE + 2) /* header not prepared */
280 #define WAVERR_SYNC (WAVERR_BASE + 3) /* device is synchronous */
281 #define WAVERR_LASTERROR (WAVERR_BASE + 3) /* last error in range */
283 typedef LPDRVCALLBACK LPWAVECALLBACK
;
285 #define WOM_OPEN MM_WOM_OPEN
286 #define WOM_CLOSE MM_WOM_CLOSE
287 #define WOM_DONE MM_WOM_DONE
288 #define WIM_OPEN MM_WIM_OPEN
289 #define WIM_CLOSE MM_WIM_CLOSE
290 #define WIM_DATA MM_WIM_DATA
292 #define WAVE_MAPPER (-1)
294 #define WAVE_FORMAT_QUERY 0x0001
295 #define WAVE_ALLOWSYNC 0x0002
296 #define WAVE_MAPPED 0x0004
297 #define WAVE_FORMAT_DIRECT 0x0008
298 #define WAVE_FORMAT_DIRECT_QUERY (WAVE_FORMAT_QUERY | WAVE_FORMAT_DIRECT)
300 typedef struct wavehdr_tag
{
301 LPSTR lpData
; /* pointer to locked data buffer */
302 DWORD dwBufferLength
; /* length of data buffer */
303 DWORD dwBytesRecorded
;/* used for input only */
304 DWORD dwUser
; /* for client's use */
305 DWORD dwFlags
; /* assorted flags (see defines) */
306 DWORD dwLoops
; /* loop control counter */
308 struct wavehdr_tag
*lpNext
; /* reserved for driver */
309 DWORD reserved
; /* reserved for driver */
310 } WAVEHDR
, *PWAVEHDR
, *NPWAVEHDR
, *LPWAVEHDR
;
312 #define WHDR_DONE 0x00000001 /* done bit */
313 #define WHDR_PREPARED 0x00000002 /* set if this header has been prepared */
314 #define WHDR_BEGINLOOP 0x00000004 /* loop start block */
315 #define WHDR_ENDLOOP 0x00000008 /* loop end block */
316 #define WHDR_INQUEUE 0x00000010 /* reserved for driver */
319 WORD wMid
; /* manufacturer ID */
320 WORD wPid
; /* product ID */
321 MMVERSION vDriverVersion
; /* version of the driver */
322 CHAR szPname
[MAXPNAMELEN
]; /* product name (0 terminated string) */
323 DWORD dwFormats
; /* formats supported */
324 WORD wChannels
; /* number of sources supported */
325 WORD wReserved1
; /* padding */
326 DWORD dwSupport
; /* functionality supported by driver */
327 } WAVEOUTCAPSA
, *LPWAVEOUTCAPSA
;
330 WORD wMid
; /* manufacturer ID */
331 WORD wPid
; /* product ID */
332 MMVERSION vDriverVersion
; /* version of the driver */
333 WCHAR szPname
[MAXPNAMELEN
]; /* product name (0 terminated string) */
334 DWORD dwFormats
; /* formats supported */
335 WORD wChannels
; /* number of sources supported */
336 WORD wReserved1
; /* padding */
337 DWORD dwSupport
; /* functionality supported by driver */
338 } WAVEOUTCAPSW
, *LPWAVEOUTCAPSW
;
339 DECL_WINELIB_TYPE_AW(WAVEOUTCAPS
)
340 DECL_WINELIB_TYPE_AW(LPWAVEOUTCAPS
)
342 #define WAVECAPS_PITCH 0x0001 /* supports pitch control */
343 #define WAVECAPS_PLAYBACKRATE 0x0002 /* supports playback rate control */
344 #define WAVECAPS_VOLUME 0x0004 /* supports volume control */
345 #define WAVECAPS_LRVOLUME 0x0008 /* separate left-right volume control */
346 #define WAVECAPS_SYNC 0x0010 /* driver is synchrounous and playing is blocking */
347 #define WAVECAPS_SAMPLEACCURATE 0x0020 /* position is sample accurate */
348 #define WAVECAPS_DIRECTSOUND 0x0040 /* ? */
351 WORD wMid
; /* manufacturer ID */
352 WORD wPid
; /* product ID */
353 MMVERSION vDriverVersion
; /* version of the driver */
354 CHAR szPname
[MAXPNAMELEN
]; /* product name (0 terminated string) */
355 DWORD dwFormats
; /* formats supported */
356 WORD wChannels
; /* number of channels supported */
358 } WAVEINCAPSA
, *LPWAVEINCAPSA
;
360 WORD wMid
; /* manufacturer ID */
361 WORD wPid
; /* product ID */
362 MMVERSION vDriverVersion
; /* version of the driver */
363 WCHAR szPname
[MAXPNAMELEN
]; /* product name (0 terminated string) */
364 DWORD dwFormats
; /* formats supported */
365 WORD wChannels
; /* number of channels supported */
367 } WAVEINCAPSW
, *LPWAVEINCAPSW
;
368 DECL_WINELIB_TYPE_AW(WAVEINCAPS
)
369 DECL_WINELIB_TYPE_AW(LPWAVEINCAPS
)
371 #define WAVE_INVALIDFORMAT 0x00000000 /* invalid format */
372 #define WAVE_FORMAT_1M08 0x00000001 /* 11.025 kHz, Mono, 8-bit */
373 #define WAVE_FORMAT_1S08 0x00000002 /* 11.025 kHz, Stereo, 8-bit */
374 #define WAVE_FORMAT_1M16 0x00000004 /* 11.025 kHz, Mono, 16-bit */
375 #define WAVE_FORMAT_1S16 0x00000008 /* 11.025 kHz, Stereo, 16-bit */
376 #define WAVE_FORMAT_2M08 0x00000010 /* 22.05 kHz, Mono, 8-bit */
377 #define WAVE_FORMAT_2S08 0x00000020 /* 22.05 kHz, Stereo, 8-bit */
378 #define WAVE_FORMAT_2M16 0x00000040 /* 22.05 kHz, Mono, 16-bit */
379 #define WAVE_FORMAT_2S16 0x00000080 /* 22.05 kHz, Stereo, 16-bit */
380 #define WAVE_FORMAT_4M08 0x00000100 /* 44.1 kHz, Mono, 8-bit */
381 #define WAVE_FORMAT_4S08 0x00000200 /* 44.1 kHz, Stereo, 8-bit */
382 #define WAVE_FORMAT_4M16 0x00000400 /* 44.1 kHz, Mono, 16-bit */
383 #define WAVE_FORMAT_4S16 0x00000800 /* 44.1 kHz, Stereo, 16-bit */
384 #define WAVE_FORMAT_48M08 0x00001000 /* 48 kHz, Mono, 8-bit */
385 #define WAVE_FORMAT_48S08 0x00002000 /* 48 kHz, Stereo, 8-bit */
386 #define WAVE_FORMAT_48M16 0x00004000 /* 48 kHz, Mono, 16-bit */
387 #define WAVE_FORMAT_48S16 0x00008000 /* 48 kHz, Stereo, 16-bit */
388 #define WAVE_FORMAT_96M08 0x00010000 /* 96 kHz, Mono, 8-bit */
389 #define WAVE_FORMAT_96S08 0x00020000 /* 96 kHz, Stereo, 8-bit */
390 #define WAVE_FORMAT_96M16 0x00040000 /* 96 kHz, Mono, 16-bit */
391 #define WAVE_FORMAT_96S16 0x00080000 /* 96 kHz, Stereo, 16-bit */
393 /* General format structure common to all formats, same for Win16 and Win32 */
395 WORD wFormatTag
; /* format type */
396 WORD nChannels
; /* number of channels */
397 DWORD nSamplesPerSec
; /* sample rate */
398 DWORD nAvgBytesPerSec
;/* for buffer estimation */
399 WORD nBlockAlign
; /* block size of data */
400 } WAVEFORMAT
, *LPWAVEFORMAT
;
402 #define WAVE_FORMAT_PCM 1
407 } PCMWAVEFORMAT
, *LPPCMWAVEFORMAT
;
409 #ifndef _WAVEFORMATEX_
410 #define _WAVEFORMATEX_
411 /* dito same for Win16 / Win32 */
413 WORD wFormatTag
; /* format type */
414 WORD nChannels
; /* number of channels (i.e. mono, stereo...) */
415 DWORD nSamplesPerSec
; /* sample rate */
416 DWORD nAvgBytesPerSec
;/* for buffer estimation */
417 WORD nBlockAlign
; /* block size of data */
418 WORD wBitsPerSample
; /* number of bits per sample of mono data */
419 WORD cbSize
; /* the count in bytes of the size of */
420 /* extra information (after cbSize) */
421 } WAVEFORMATEX
, *LPWAVEFORMATEX
, *NPWAVEFORMATEX
, *PWAVEFORMATEX
;
424 UINT WINAPI
waveOutGetNumDevs(void);
425 UINT WINAPI
waveOutGetDevCapsA(UINT_PTR
,LPWAVEOUTCAPSA
,UINT
);
426 UINT WINAPI
waveOutGetDevCapsW(UINT_PTR
,LPWAVEOUTCAPSW
,UINT
);
427 #define waveOutGetDevCaps WINELIB_NAME_AW(waveOutGetDevCaps)
428 UINT WINAPI
waveOutGetVolume(HWAVEOUT
,DWORD
*);
429 UINT WINAPI
waveOutSetVolume(HWAVEOUT
,DWORD
);
430 UINT WINAPI
waveOutGetErrorTextA(UINT
,LPSTR
,UINT
);
431 UINT WINAPI
waveOutGetErrorTextW(UINT
,LPWSTR
,UINT
);
432 #define waveOutGetErrorText WINELIB_NAME_AW(waveOutGetErrorText)
433 UINT WINAPI
waveOutOpen(HWAVEOUT
*,UINT
,const LPWAVEFORMATEX
,DWORD_PTR
,DWORD_PTR
,DWORD
);
434 UINT WINAPI
waveOutClose(HWAVEOUT
);
435 UINT WINAPI
waveOutPrepareHeader(HWAVEOUT
,WAVEHDR
*,UINT
);
436 UINT WINAPI
waveOutUnprepareHeader(HWAVEOUT
,WAVEHDR
*,UINT
);
437 UINT WINAPI
waveOutWrite(HWAVEOUT
,WAVEHDR
*,UINT
);
438 UINT WINAPI
waveOutPause(HWAVEOUT
);
439 UINT WINAPI
waveOutRestart(HWAVEOUT
);
440 UINT WINAPI
waveOutReset(HWAVEOUT
);
441 UINT WINAPI
waveOutBreakLoop(HWAVEOUT
);
442 UINT WINAPI
waveOutGetPosition(HWAVEOUT
,LPMMTIME
,UINT
);
443 UINT WINAPI
waveOutGetPitch(HWAVEOUT
,DWORD
*);
444 UINT WINAPI
waveOutSetPitch(HWAVEOUT
,DWORD
);
445 UINT WINAPI
waveOutGetPlaybackRate(HWAVEOUT
,DWORD
*);
446 UINT WINAPI
waveOutSetPlaybackRate(HWAVEOUT
,DWORD
);
447 UINT WINAPI
waveOutGetID(HWAVEOUT
,UINT
*);
448 UINT WINAPI
waveOutMessage(HWAVEOUT
,UINT
,DWORD_PTR
,DWORD_PTR
);
449 UINT WINAPI
waveInGetNumDevs(void);
450 UINT WINAPI
waveInGetDevCapsA(UINT_PTR
,LPWAVEINCAPSA
,UINT
);
451 UINT WINAPI
waveInGetDevCapsW(UINT_PTR
,LPWAVEINCAPSW
,UINT
);
452 #define waveInGetDevCaps WINELIB_NAME_AW(waveInGetDevCaps)
453 UINT WINAPI
waveInGetErrorTextA(UINT
,LPSTR
,UINT
);
454 UINT WINAPI
waveInGetErrorTextW(UINT
,LPWSTR
,UINT
);
455 #define waveInGetErrorText WINELIB_NAME_AW(waveInGetErrorText)
456 UINT WINAPI
waveInOpen(HWAVEIN
*,UINT
,const LPWAVEFORMATEX
,DWORD_PTR
,DWORD_PTR
,DWORD
);
457 UINT WINAPI
waveInClose(HWAVEIN
);
458 UINT WINAPI
waveInPrepareHeader(HWAVEIN
,WAVEHDR
*,UINT
);
459 UINT WINAPI
waveInUnprepareHeader(HWAVEIN
,WAVEHDR
*,UINT
);
460 UINT WINAPI
waveInAddBuffer(HWAVEIN
,WAVEHDR
*,UINT
);
461 UINT WINAPI
waveInStart(HWAVEIN
);
462 UINT WINAPI
waveInStop(HWAVEIN
);
463 UINT WINAPI
waveInReset(HWAVEIN
);
464 UINT WINAPI
waveInGetPosition(HWAVEIN
,LPMMTIME
,UINT
);
465 UINT WINAPI
waveInGetID(HWAVEIN
,UINT
*);
466 UINT WINAPI
waveInMessage(HWAVEIN
,UINT
,DWORD_PTR
,DWORD_PTR
);
468 #define MIDIERR_UNPREPARED (MIDIERR_BASE + 0) /* header not prepared */
469 #define MIDIERR_STILLPLAYING (MIDIERR_BASE + 1) /* still something playing */
470 #define MIDIERR_NOMAP (MIDIERR_BASE + 2) /* no current map */
471 #define MIDIERR_NOTREADY (MIDIERR_BASE + 3) /* hardware is still busy */
472 #define MIDIERR_NODEVICE (MIDIERR_BASE + 4) /* port no longer connected */
473 #define MIDIERR_INVALIDSETUP (MIDIERR_BASE + 5) /* invalid setup */
474 #define MIDIERR_LASTERROR (MIDIERR_BASE + 5) /* last error in range */
476 typedef LPDRVCALLBACK LPMIDICALLBACK
;
477 #define MIDIPATCHSIZE 128
478 typedef WORD PATCHARRAY
[MIDIPATCHSIZE
];
479 typedef WORD
*LPPATCHARRAY
;
480 typedef WORD KEYARRAY
[MIDIPATCHSIZE
];
481 typedef WORD
*LPKEYARRAY
;
483 #define MIM_OPEN MM_MIM_OPEN
484 #define MIM_CLOSE MM_MIM_CLOSE
485 #define MIM_DATA MM_MIM_DATA
486 #define MIM_LONGDATA MM_MIM_LONGDATA
487 #define MIM_ERROR MM_MIM_ERROR
488 #define MIM_LONGERROR MM_MIM_LONGERROR
489 #define MIM_MOREDATA MM_MIM_MOREDATA
491 #define MOM_OPEN MM_MOM_OPEN
492 #define MOM_CLOSE MM_MOM_CLOSE
493 #define MOM_DONE MM_MOM_DONE
494 #define MOM_POSITIONCB MM_MOM_POSITIONCB
496 /* device ID for MIDI mapper */
498 #define MIDIMAPPER (-1)
499 #define MIDI_MAPPER (-1)
501 /* Only on Win95 and up */
502 #define MIDI_IO_STATUS 0x00000020L
504 /* flags for wFlags parm of
505 midiOutCachePatches(),
506 midiOutCacheDrumPatches() */
507 #define MIDI_CACHE_ALL 1
508 #define MIDI_CACHE_BESTFIT 2
509 #define MIDI_CACHE_QUERY 3
510 #define MIDI_UNCACHE 4
513 WORD wMid
; /* manufacturer ID */
514 WORD wPid
; /* product ID */
515 MMVERSION vDriverVersion
; /* version of the driver */
516 CHAR szPname
[MAXPNAMELEN
];/* product name (NULL terminated string) */
517 WORD wTechnology
; /* type of device */
518 WORD wVoices
; /* # of voices (internal synth only) */
519 WORD wNotes
; /* max # of notes (internal synth only) */
520 WORD wChannelMask
; /* channels used (internal synth only) */
521 DWORD dwSupport
; /* functionality supported by driver */
522 } MIDIOUTCAPSA
, *LPMIDIOUTCAPSA
;
525 WORD wMid
; /* manufacturer ID */
526 WORD wPid
; /* product ID */
527 MMVERSION vDriverVersion
; /* version of the driver */
528 WCHAR szPname
[MAXPNAMELEN
];/* product name (NULL terminated string) */
529 WORD wTechnology
; /* type of device */
530 WORD wVoices
; /* # of voices (internal synth only) */
531 WORD wNotes
; /* max # of notes (internal synth only) */
532 WORD wChannelMask
; /* channels used (internal synth only) */
533 DWORD dwSupport
; /* functionality supported by driver */
534 } MIDIOUTCAPSW
, *LPMIDIOUTCAPSW
;
536 DECL_WINELIB_TYPE_AW(MIDIOUTCAPS
)
537 DECL_WINELIB_TYPE_AW(LPMIDIOUTCAPS
)
539 #define MOD_MIDIPORT 1 /* output port */
540 #define MOD_SYNTH 2 /* generic internal synth */
541 #define MOD_SQSYNTH 3 /* square wave internal synth */
542 #define MOD_FMSYNTH 4 /* FM internal synth */
543 #define MOD_MAPPER 5 /* MIDI mapper */
545 #define MIDICAPS_VOLUME 0x0001 /* supports volume control */
546 #define MIDICAPS_LRVOLUME 0x0002 /* separate left-right volume control */
547 #define MIDICAPS_CACHE 0x0004
548 #define MIDICAPS_STREAM 0x0008 /* capable of supporting stream buffer */
551 WORD wMid
; /* manufacturer ID */
552 WORD wPid
; /* product ID */
553 MMVERSION vDriverVersion
; /* version of the driver */
554 CHAR szPname
[MAXPNAMELEN
];/* product name (NULL terminated string) */
555 DWORD dwSupport
; /* included in win95 and higher */
556 } MIDIINCAPSA
, *LPMIDIINCAPSA
;
559 WORD wMid
; /* manufacturer ID */
560 WORD wPid
; /* product ID */
561 MMVERSION vDriverVersion
; /* version of the driver */
562 WCHAR szPname
[MAXPNAMELEN
];/* product name (NULL terminated string) */
563 DWORD dwSupport
; /* included in win95 and higher */
564 } MIDIINCAPSW
, *LPMIDIINCAPSW
;
566 DECL_WINELIB_TYPE_AW(MIDIINCAPS
)
567 DECL_WINELIB_TYPE_AW(LPMIDIINCAPS
)
569 /* It seems that Win32 has a slightly different structure than Win 16.
572 typedef struct midihdr_tag
{
573 LPSTR lpData
; /* pointer to locked data block */
574 DWORD dwBufferLength
; /* length of data in data block */
575 DWORD dwBytesRecorded
;/* used for input only */
576 DWORD_PTR dwUser
; /* for client's use */
577 DWORD dwFlags
; /* assorted flags (see defines) */
578 struct midihdr_tag
*lpNext
; /* reserved for driver */
579 DWORD reserved
; /* reserved for driver */
580 DWORD dwOffset
; /* offset of playback in case of
582 DWORD_PTR dwReserved
[8]; /* reserved for driver */
583 } MIDIHDR
, *LPMIDIHDR
;
585 #define MHDR_DONE 0x00000001 /* done bit */
586 #define MHDR_PREPARED 0x00000002 /* set if header prepared */
587 #define MHDR_INQUEUE 0x00000004 /* reserved for driver */
588 #define MHDR_ISSTRM 0x00000008 /* data is sent by Stream functions */
593 } MIDIPROPTEMPO
, *LPMIDIPROPTEMPO
;
598 } MIDIPROPTIMEDIV
, *LPMIDIPROPTIMEDIV
;
600 #define MIDIPROP_GET 0x40000000
601 #define MIDIPROP_SET 0x80000000
602 #define MIDIPROP_TEMPO 0x00000002
603 #define MIDIPROP_TIMEDIV 0x00000001
606 DWORD dwDeltaTime
; /* Time, in MIDI ticks, between the previous
607 * event and the current event. */
608 DWORD dwStreamID
; /* Reserved; must be zero. */
609 DWORD dwEvent
; /* event => see MEVT_XXX macros */
610 DWORD dwParms
[1]; /* extra pmts to dwEvent if F_LONG is set */
611 } MIDIEVENT
, *LPMIDIEVENT
;
613 #define MEVT_EVENTTYPE(x) ((BYTE) (((x)>>24)&0xFF))
614 #define MEVT_EVENTPARM(x) ((DWORD) ((x)&0x00FFFFFFL))
616 #define MEVT_F_CALLBACK 0x40000000l
617 #define MEVT_F_LONG 0x80000000l
618 #define MEVT_F_SHORT 0x00000000l
619 #define MEVT_COMMENT ((BYTE)0x82)
620 #define MEVT_LONGMSG ((BYTE)0x80)
621 #define MEVT_NOP ((BYTE)0x02)
622 #define MEVT_SHORTMSG ((BYTE)0x00)
623 #define MEVT_TEMPO ((BYTE)0x01)
624 #define MEVT_VERSION ((BYTE)0x84)
626 UINT WINAPI
midiOutGetNumDevs(void);
627 UINT WINAPI
midiOutGetDevCapsA(UINT_PTR
,LPMIDIOUTCAPSA
,UINT
);
628 UINT WINAPI
midiOutGetDevCapsW(UINT_PTR
,LPMIDIOUTCAPSW
,UINT
);
629 #define midiOutGetDevCaps WINELIB_NAME_AW(midiOutGetDevCaps)
630 UINT WINAPI
midiOutGetVolume(HMIDIOUT
,DWORD
*);
631 UINT WINAPI
midiOutSetVolume(HMIDIOUT
,DWORD
);
632 UINT WINAPI
midiOutGetErrorTextA(UINT
,LPSTR
,UINT
);
633 UINT WINAPI
midiOutGetErrorTextW(UINT
,LPWSTR
,UINT
);
634 #define midiOutGetErrorText WINELIB_NAME_AW(midiOutGetErrorText)
635 UINT WINAPI
midiOutOpen(LPHMIDIOUT
,UINT
,DWORD_PTR
,DWORD_PTR
,DWORD
);
636 UINT WINAPI
midiOutClose(HMIDIOUT
);
637 UINT WINAPI
midiOutPrepareHeader(HMIDIOUT
,MIDIHDR
*,UINT
);
638 UINT WINAPI
midiOutUnprepareHeader(HMIDIOUT
,MIDIHDR
*,UINT
);
639 UINT WINAPI
midiOutShortMsg(HMIDIOUT
,DWORD
);
640 UINT WINAPI
midiOutLongMsg(HMIDIOUT
,MIDIHDR
*,UINT
);
641 UINT WINAPI
midiOutReset(HMIDIOUT
);
642 UINT WINAPI
midiOutCachePatches(HMIDIOUT
,UINT
,WORD
*,UINT
);
643 UINT WINAPI
midiOutCacheDrumPatches(HMIDIOUT
,UINT
,WORD
*,UINT
);
644 UINT WINAPI
midiOutGetID(HMIDIOUT
,UINT
*);
645 UINT WINAPI
midiOutMessage(HMIDIOUT
,UINT
,DWORD_PTR
,DWORD_PTR
);
647 UINT WINAPI
midiInGetNumDevs(void);
648 UINT WINAPI
midiInGetDevCapsA(UINT_PTR
,LPMIDIINCAPSA
,UINT
);
649 UINT WINAPI
midiInGetDevCapsW(UINT_PTR
,LPMIDIINCAPSW
,UINT
);
650 #define midiInGetDevCaps WINELIB_NAME_AW(midiInGetDevCaps)
651 UINT WINAPI
midiInGetErrorTextA(UINT
,LPSTR
,UINT
);
652 UINT WINAPI
midiInGetErrorTextW(UINT
,LPWSTR
,UINT
);
653 #define midiInGetErrorText WINELIB_NAME_AW(midiInGetErrorText)
654 UINT WINAPI
midiInOpen(LPHMIDIIN
,UINT
,DWORD_PTR
,DWORD_PTR
,DWORD
);
655 UINT WINAPI
midiInClose(HMIDIIN
);
656 UINT WINAPI
midiInPrepareHeader(HMIDIIN
,MIDIHDR
*,UINT
);
657 UINT WINAPI
midiInUnprepareHeader(HMIDIIN
,MIDIHDR
*,UINT
);
658 UINT WINAPI
midiInAddBuffer(HMIDIIN
,MIDIHDR
*,UINT
);
659 UINT WINAPI
midiInStart(HMIDIIN
);
660 UINT WINAPI
midiInStop(HMIDIIN
);
661 UINT WINAPI
midiInReset(HMIDIIN
);
662 UINT WINAPI
midiInGetID(HMIDIIN
,UINT
*);
663 UINT WINAPI
midiInMessage(HMIDIIN
,UINT
,DWORD_PTR
,DWORD_PTR
);
664 MMRESULT WINAPI
midiStreamClose(HMIDISTRM hms
);
665 MMRESULT WINAPI
midiStreamOpen(LPHMIDISTRM
,LPUINT
,DWORD
,DWORD_PTR
,DWORD_PTR
,DWORD
);
666 MMRESULT WINAPI
midiStreamOut(HMIDISTRM hms
, LPMIDIHDR lpMidiHdr
, UINT cbMidiHdr
);
667 MMRESULT WINAPI
midiStreamPause(HMIDISTRM hms
);
668 MMRESULT WINAPI
midiStreamPosition(HMIDISTRM hms
, LPMMTIME lpmmt
, UINT cbmmt
);
669 MMRESULT WINAPI
midiStreamProperty(HMIDISTRM hms
, LPBYTE lpPropData
, DWORD dwProperty
);
670 MMRESULT WINAPI
midiStreamRestart(HMIDISTRM hms
);
671 MMRESULT WINAPI
midiStreamStop(HMIDISTRM hms
);
673 #define AUX_MAPPER (-1)
676 WORD wMid
; /* manufacturer ID */
677 WORD wPid
; /* product ID */
678 MMVERSION vDriverVersion
; /* version of the driver */
679 CHAR szPname
[MAXPNAMELEN
]; /* product name (NULL terminated string) */
680 WORD wTechnology
; /* type of device */
681 WORD wReserved1
; /* padding */
682 DWORD dwSupport
; /* functionality supported by driver */
683 } AUXCAPSA
, *LPAUXCAPSA
;
686 WORD wMid
; /* manufacturer ID */
687 WORD wPid
; /* product ID */
688 MMVERSION vDriverVersion
; /* version of the driver */
689 WCHAR szPname
[MAXPNAMELEN
]; /* product name (NULL terminated string) */
690 WORD wTechnology
; /* type of device */
691 WORD wReserved1
; /* padding */
692 DWORD dwSupport
; /* functionality supported by driver */
693 } AUXCAPSW
, *LPAUXCAPSW
;
695 DECL_WINELIB_TYPE_AW(AUXCAPS
)
696 DECL_WINELIB_TYPE_AW(LPAUXCAPS
)
698 #define AUXCAPS_CDAUDIO 1 /* audio from internal CD-ROM drive */
699 #define AUXCAPS_AUXIN 2 /* audio from auxiliary input jacks */
701 #define AUXCAPS_VOLUME 0x0001 /* supports volume control */
702 #define AUXCAPS_LRVOLUME 0x0002 /* separate left-right volume control */
704 UINT WINAPI
auxGetNumDevs(void);
705 UINT WINAPI
auxGetDevCapsA(UINT_PTR
,LPAUXCAPSA
,UINT
);
706 UINT WINAPI
auxGetDevCapsW(UINT_PTR
,LPAUXCAPSW
,UINT
);
707 #define auxGetDevCaps WINELIB_NAME_AW(auxGetDevCaps)
708 UINT WINAPI
auxSetVolume(UINT
,DWORD
);
709 UINT WINAPI
auxGetVolume(UINT
,LPDWORD
);
710 UINT WINAPI
auxOutMessage(UINT
,UINT
,DWORD_PTR
,DWORD_PTR
);
712 #define TIMERR_NOERROR (0) /* no error */
713 #define TIMERR_NOCANDO (TIMERR_BASE+1) /* request not completed */
714 #define TIMERR_STRUCT (TIMERR_BASE+33) /* time struct size */
716 typedef void (CALLBACK
*LPTIMECALLBACK
)(UINT
,UINT
,DWORD_PTR
,DWORD_PTR
,DWORD_PTR
);
718 #define TIME_ONESHOT 0x0000 /* program timer for single event */
719 #define TIME_PERIODIC 0x0001 /* program for continuous periodic event */
720 #define TIME_CALLBACK_FUNCTION 0x0000 /* callback is function */
721 #define TIME_CALLBACK_EVENT_SET 0x0010 /* callback is event - use SetEvent */
722 #define TIME_CALLBACK_EVENT_PULSE 0x0020 /* callback is event - use PulseEvent */
723 #define TIME_KILL_SYNCHRONOUS 0x0100
728 } TIMECAPS
, *LPTIMECAPS
;
731 MMRESULT WINAPI
timeGetSystemTime(LPMMTIME
,UINT
);
732 DWORD WINAPI
timeGetTime(void); /* same for win32/win16 */
733 MMRESULT WINAPI
timeSetEvent(UINT
,UINT
,LPTIMECALLBACK
,DWORD_PTR
,UINT
);
734 MMRESULT WINAPI
timeKillEvent(UINT
);
735 MMRESULT WINAPI
timeGetDevCaps(LPTIMECAPS
,UINT
);
736 MMRESULT WINAPI
timeBeginPeriod(UINT
);
737 MMRESULT WINAPI
timeEndPeriod(UINT
);
739 #define JOYERR_NOERROR (0) /* no error */
740 #define JOYERR_PARMS (JOYERR_BASE+5) /* bad parameters */
741 #define JOYERR_NOCANDO (JOYERR_BASE+6) /* request not completed */
742 #define JOYERR_UNPLUGGED (JOYERR_BASE+7) /* joystick is unplugged */
744 /* JOYINFO, JOYINFOEX, MM_JOY* */
745 #define JOY_BUTTON1 0x0001
746 #define JOY_BUTTON2 0x0002
747 #define JOY_BUTTON3 0x0004
748 #define JOY_BUTTON4 0x0008
749 #define JOY_BUTTON1CHG 0x0100
750 #define JOY_BUTTON2CHG 0x0200
751 #define JOY_BUTTON3CHG 0x0400
752 #define JOY_BUTTON4CHG 0x0800
754 #define JOYSTICKID1 0
755 #define JOYSTICKID2 1
758 #define JOYCAPS_HASZ 0x0001
759 #define JOYCAPS_HASR 0x0002
760 #define JOYCAPS_HASU 0x0004
761 #define JOYCAPS_HASV 0x0008
762 #define JOYCAPS_HASPOV 0x0010
763 #define JOYCAPS_POV4DIR 0x0020
764 #define JOYCAPS_POVCTS 0x0040
766 /* JOYINFOEX stuff */
767 #define JOY_POVCENTERED (WORD) -1
768 #define JOY_POVFORWARD 0
769 #define JOY_POVRIGHT 9000
770 #define JOY_POVBACKWARD 18000
771 #define JOY_POVLEFT 27000
773 #define JOY_RETURNX 0x00000001
774 #define JOY_RETURNY 0x00000002
775 #define JOY_RETURNZ 0x00000004
776 #define JOY_RETURNR 0x00000008
777 #define JOY_RETURNU 0x00000010
778 #define JOY_RETURNV 0x00000020
779 #define JOY_RETURNPOV 0x00000040
780 #define JOY_RETURNBUTTONS 0x00000080
781 #define JOY_RETURNRAWDATA 0x00000100
782 #define JOY_RETURNPOVCTS 0x00000200
783 #define JOY_RETURNCENTERED 0x00000400
784 #define JOY_USEDEADZONE 0x00000800
785 #define JOY_RETURNALL (JOY_RETURNX | JOY_RETURNY | JOY_RETURNZ | \
786 JOY_RETURNR | JOY_RETURNU | JOY_RETURNV | \
787 JOY_RETURNPOV | JOY_RETURNBUTTONS)
788 #define JOY_CAL_READALWAYS 0x00010000
789 #define JOY_CAL_READXYONLY 0x00020000
790 #define JOY_CAL_READ3 0x00040000
791 #define JOY_CAL_READ4 0x00080000
792 #define JOY_CAL_READXONLY 0x00100000
793 #define JOY_CAL_READYONLY 0x00200000
794 #define JOY_CAL_READ5 0x00400000
795 #define JOY_CAL_READ6 0x00800000
796 #define JOY_CAL_READZONLY 0x01000000
797 #define JOY_CAL_READRONLY 0x02000000
798 #define JOY_CAL_READUONLY 0x04000000
799 #define JOY_CAL_READVONLY 0x08000000
804 CHAR szPname
[MAXPNAMELEN
];
824 CHAR szRegKey
[MAXPNAMELEN
];
825 CHAR szOEMVxD
[MAX_JOYSTICKOEMVXDNAME
];
826 } JOYCAPSA
, *LPJOYCAPSA
;
831 WCHAR szPname
[MAXPNAMELEN
];
851 WCHAR szRegKey
[MAXPNAMELEN
];
852 WCHAR szOEMVxD
[MAX_JOYSTICKOEMVXDNAME
];
853 } JOYCAPSW
, *LPJOYCAPSW
;
854 DECL_WINELIB_TYPE_AW(JOYCAPS
)
855 DECL_WINELIB_TYPE_AW(LPJOYCAPS
)
862 } JOYINFO
, *LPJOYINFO
;
865 DWORD dwSize
; /* size of structure */
866 DWORD dwFlags
; /* flags to indicate what to return */
867 DWORD dwXpos
; /* x position */
868 DWORD dwYpos
; /* y position */
869 DWORD dwZpos
; /* z position */
870 DWORD dwRpos
; /* rudder/4th axis position */
871 DWORD dwUpos
; /* 5th axis position */
872 DWORD dwVpos
; /* 6th axis position */
873 DWORD dwButtons
; /* button states */
874 DWORD dwButtonNumber
; /* current button number pressed */
875 DWORD dwPOV
; /* point of view state */
876 DWORD dwReserved1
; /* reserved for communication between winmm & driver */
877 DWORD dwReserved2
; /* reserved for future expansion */
878 } JOYINFOEX
,*LPJOYINFOEX
;
881 MMRESULT WINAPI
joyGetDevCapsA(UINT_PTR
,LPJOYCAPSA
,UINT
);
882 MMRESULT WINAPI
joyGetDevCapsW(UINT_PTR
,LPJOYCAPSW
,UINT
);
883 #define joyGetDevCaps WINELIB_NAME_AW(joyGetDevCaps)
884 UINT WINAPI
joyGetNumDevs(void);
885 MMRESULT WINAPI
joyGetPos(UINT
,LPJOYINFO
);
886 MMRESULT WINAPI
joyGetPosEx(UINT
,LPJOYINFOEX
);
887 MMRESULT WINAPI
joyGetThreshold(UINT
,UINT
*);
888 MMRESULT WINAPI
joyReleaseCapture(UINT
);
889 MMRESULT WINAPI
joySetCapture(HWND
,UINT
,UINT
,BOOL
);
890 MMRESULT WINAPI
joySetThreshold(UINT
,UINT
);
892 #define MIXERR_BASE 1024
893 #define MIXERR_INVALLINE (MIXERR_BASE + 0)
894 #define MIXERR_INVALCONTROL (MIXERR_BASE + 1)
895 #define MIXERR_INVALVALUE (MIXERR_BASE + 2)
896 #define MIXERR_LASTERROR (MIXERR_BASE + 2)
901 MMVERSION vDriverVersion
;
902 CHAR szPname
[MAXPNAMELEN
];
905 } MIXERCAPSA
,*LPMIXERCAPSA
;
910 MMVERSION vDriverVersion
;
911 WCHAR szPname
[MAXPNAMELEN
];
914 } MIXERCAPSW
,*LPMIXERCAPSW
;
916 DECL_WINELIB_TYPE_AW(MIXERCAPS
)
917 DECL_WINELIB_TYPE_AW(LPMIXERCAPS
)
919 #define MIXER_SHORT_NAME_CHARS 16
920 #define MIXER_LONG_NAME_CHARS 64
922 /* MIXERLINE.fdwLine */
923 #define MIXERLINE_LINEF_ACTIVE 0x00000001
924 #define MIXERLINE_LINEF_DISCONNECTED 0x00008000
925 #define MIXERLINE_LINEF_SOURCE 0x80000000
928 #define MIXER_OBJECTF_HANDLE 0x80000000L
929 #define MIXER_OBJECTF_MIXER 0x00000000L
930 #define MIXER_OBJECTF_HMIXER (MIXER_OBJECTF_HANDLE|MIXER_OBJECTF_MIXER)
931 #define MIXER_OBJECTF_WAVEOUT 0x10000000L
932 #define MIXER_OBJECTF_HWAVEOUT (MIXER_OBJECTF_HANDLE|MIXER_OBJECTF_WAVEOUT)
933 #define MIXER_OBJECTF_WAVEIN 0x20000000L
934 #define MIXER_OBJECTF_HWAVEIN (MIXER_OBJECTF_HANDLE|MIXER_OBJECTF_WAVEIN)
935 #define MIXER_OBJECTF_MIDIOUT 0x30000000L
936 #define MIXER_OBJECTF_HMIDIOUT (MIXER_OBJECTF_HANDLE|MIXER_OBJECTF_MIDIOUT)
937 #define MIXER_OBJECTF_MIDIIN 0x40000000L
938 #define MIXER_OBJECTF_HMIDIIN (MIXER_OBJECTF_HANDLE|MIXER_OBJECTF_MIDIIN)
939 #define MIXER_OBJECTF_AUX 0x50000000L
941 /* MIXERLINE.dwComponentType */
942 /* component types for destinations and sources */
943 #define MIXERLINE_COMPONENTTYPE_DST_FIRST 0x00000000L
944 #define MIXERLINE_COMPONENTTYPE_DST_UNDEFINED (MIXERLINE_COMPONENTTYPE_DST_FIRST + 0)
945 #define MIXERLINE_COMPONENTTYPE_DST_DIGITAL (MIXERLINE_COMPONENTTYPE_DST_FIRST + 1)
946 #define MIXERLINE_COMPONENTTYPE_DST_LINE (MIXERLINE_COMPONENTTYPE_DST_FIRST + 2)
947 #define MIXERLINE_COMPONENTTYPE_DST_MONITOR (MIXERLINE_COMPONENTTYPE_DST_FIRST + 3)
948 #define MIXERLINE_COMPONENTTYPE_DST_SPEAKERS (MIXERLINE_COMPONENTTYPE_DST_FIRST + 4)
949 #define MIXERLINE_COMPONENTTYPE_DST_HEADPHONES (MIXERLINE_COMPONENTTYPE_DST_FIRST + 5)
950 #define MIXERLINE_COMPONENTTYPE_DST_TELEPHONE (MIXERLINE_COMPONENTTYPE_DST_FIRST + 6)
951 #define MIXERLINE_COMPONENTTYPE_DST_WAVEIN (MIXERLINE_COMPONENTTYPE_DST_FIRST + 7)
952 #define MIXERLINE_COMPONENTTYPE_DST_VOICEIN (MIXERLINE_COMPONENTTYPE_DST_FIRST + 8)
953 #define MIXERLINE_COMPONENTTYPE_DST_LAST (MIXERLINE_COMPONENTTYPE_DST_FIRST + 8)
955 #define MIXERLINE_COMPONENTTYPE_SRC_FIRST 0x00001000L
956 #define MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 0)
957 #define MIXERLINE_COMPONENTTYPE_SRC_DIGITAL (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 1)
958 #define MIXERLINE_COMPONENTTYPE_SRC_LINE (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 2)
959 #define MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 3)
960 #define MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 4)
961 #define MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 5)
962 #define MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 6)
963 #define MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 7)
964 #define MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 8)
965 #define MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 9)
966 #define MIXERLINE_COMPONENTTYPE_SRC_ANALOG (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 10)
967 #define MIXERLINE_COMPONENTTYPE_SRC_LAST (MIXERLINE_COMPONENTTYPE_SRC_FIRST + 10)
969 /* MIXERLINE.Target.dwType */
970 #define MIXERLINE_TARGETTYPE_UNDEFINED 0
971 #define MIXERLINE_TARGETTYPE_WAVEOUT 1
972 #define MIXERLINE_TARGETTYPE_WAVEIN 2
973 #define MIXERLINE_TARGETTYPE_MIDIOUT 3
974 #define MIXERLINE_TARGETTYPE_MIDIIN 4
975 #define MIXERLINE_TARGETTYPE_AUX 5
984 DWORD dwComponentType
;
988 CHAR szShortName
[MIXER_SHORT_NAME_CHARS
];
989 CHAR szName
[MIXER_LONG_NAME_CHARS
];
995 MMVERSION vDriverVersion
;
996 CHAR szPname
[MAXPNAMELEN
];
998 } MIXERLINEA
, *LPMIXERLINEA
;
1002 DWORD dwDestination
;
1007 DWORD dwComponentType
;
1011 WCHAR szShortName
[MIXER_SHORT_NAME_CHARS
];
1012 WCHAR szName
[MIXER_LONG_NAME_CHARS
];
1018 MMVERSION vDriverVersion
;
1019 WCHAR szPname
[MAXPNAMELEN
];
1021 } MIXERLINEW
, *LPMIXERLINEW
;
1023 DECL_WINELIB_TYPE_AW(MIXERLINE
)
1024 DECL_WINELIB_TYPE_AW(LPMIXERLINE
)
1026 /* MIXERCONTROL.fdwControl */
1027 #define MIXERCONTROL_CONTROLF_UNIFORM 0x00000001L
1028 #define MIXERCONTROL_CONTROLF_MULTIPLE 0x00000002L
1029 #define MIXERCONTROL_CONTROLF_DISABLED 0x80000000L
1031 /* MIXERCONTROL_CONTROLTYPE_xxx building block defines */
1032 #define MIXERCONTROL_CT_CLASS_MASK 0xF0000000L
1033 #define MIXERCONTROL_CT_CLASS_CUSTOM 0x00000000L
1034 #define MIXERCONTROL_CT_CLASS_METER 0x10000000L
1035 #define MIXERCONTROL_CT_CLASS_SWITCH 0x20000000L
1036 #define MIXERCONTROL_CT_CLASS_NUMBER 0x30000000L
1037 #define MIXERCONTROL_CT_CLASS_SLIDER 0x40000000L
1038 #define MIXERCONTROL_CT_CLASS_FADER 0x50000000L
1039 #define MIXERCONTROL_CT_CLASS_TIME 0x60000000L
1040 #define MIXERCONTROL_CT_CLASS_LIST 0x70000000L
1042 #define MIXERCONTROL_CT_SUBCLASS_MASK 0x0F000000L
1044 #define MIXERCONTROL_CT_SC_SWITCH_BOOLEAN 0x00000000L
1045 #define MIXERCONTROL_CT_SC_SWITCH_BUTTON 0x01000000L
1047 #define MIXERCONTROL_CT_SC_METER_POLLED 0x00000000L
1049 #define MIXERCONTROL_CT_SC_TIME_MICROSECS 0x00000000L
1050 #define MIXERCONTROL_CT_SC_TIME_MILLISECS 0x01000000L
1052 #define MIXERCONTROL_CT_SC_LIST_SINGLE 0x00000000L
1053 #define MIXERCONTROL_CT_SC_LIST_MULTIPLE 0x01000000L
1055 #define MIXERCONTROL_CT_UNITS_MASK 0x00FF0000L
1056 #define MIXERCONTROL_CT_UNITS_CUSTOM 0x00000000L
1057 #define MIXERCONTROL_CT_UNITS_BOOLEAN 0x00010000L
1058 #define MIXERCONTROL_CT_UNITS_SIGNED 0x00020000L
1059 #define MIXERCONTROL_CT_UNITS_UNSIGNED 0x00030000L
1060 #define MIXERCONTROL_CT_UNITS_DECIBELS 0x00040000L /* in 10ths */
1061 #define MIXERCONTROL_CT_UNITS_PERCENT 0x00050000L /* in 10ths */
1063 /* Commonly used control types for specifying MIXERCONTROL.dwControlType */
1064 #define MIXERCONTROL_CONTROLTYPE_CUSTOM (MIXERCONTROL_CT_CLASS_CUSTOM | MIXERCONTROL_CT_UNITS_CUSTOM)
1065 #define MIXERCONTROL_CONTROLTYPE_BOOLEANMETER (MIXERCONTROL_CT_CLASS_METER | MIXERCONTROL_CT_SC_METER_POLLED | MIXERCONTROL_CT_UNITS_BOOLEAN)
1066 #define MIXERCONTROL_CONTROLTYPE_SIGNEDMETER (MIXERCONTROL_CT_CLASS_METER | MIXERCONTROL_CT_SC_METER_POLLED | MIXERCONTROL_CT_UNITS_SIGNED)
1067 #define MIXERCONTROL_CONTROLTYPE_PEAKMETER (MIXERCONTROL_CONTROLTYPE_SIGNEDMETER + 1)
1068 #define MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER (MIXERCONTROL_CT_CLASS_METER | MIXERCONTROL_CT_SC_METER_POLLED | MIXERCONTROL_CT_UNITS_UNSIGNED)
1069 #define MIXERCONTROL_CONTROLTYPE_BOOLEAN (MIXERCONTROL_CT_CLASS_SWITCH | MIXERCONTROL_CT_SC_SWITCH_BOOLEAN | MIXERCONTROL_CT_UNITS_BOOLEAN)
1070 #define MIXERCONTROL_CONTROLTYPE_ONOFF (MIXERCONTROL_CONTROLTYPE_BOOLEAN + 1)
1071 #define MIXERCONTROL_CONTROLTYPE_MUTE (MIXERCONTROL_CONTROLTYPE_BOOLEAN + 2)
1072 #define MIXERCONTROL_CONTROLTYPE_MONO (MIXERCONTROL_CONTROLTYPE_BOOLEAN + 3)
1073 #define MIXERCONTROL_CONTROLTYPE_LOUDNESS (MIXERCONTROL_CONTROLTYPE_BOOLEAN + 4)
1074 #define MIXERCONTROL_CONTROLTYPE_STEREOENH (MIXERCONTROL_CONTROLTYPE_BOOLEAN + 5)
1075 #define MIXERCONTROL_CONTROLTYPE_BUTTON (MIXERCONTROL_CT_CLASS_SWITCH | MIXERCONTROL_CT_SC_SWITCH_BUTTON | MIXERCONTROL_CT_UNITS_BOOLEAN)
1076 #define MIXERCONTROL_CONTROLTYPE_DECIBELS (MIXERCONTROL_CT_CLASS_NUMBER | MIXERCONTROL_CT_UNITS_DECIBELS)
1077 #define MIXERCONTROL_CONTROLTYPE_SIGNED (MIXERCONTROL_CT_CLASS_NUMBER | MIXERCONTROL_CT_UNITS_SIGNED)
1078 #define MIXERCONTROL_CONTROLTYPE_UNSIGNED (MIXERCONTROL_CT_CLASS_NUMBER | MIXERCONTROL_CT_UNITS_UNSIGNED)
1079 #define MIXERCONTROL_CONTROLTYPE_PERCENT (MIXERCONTROL_CT_CLASS_NUMBER | MIXERCONTROL_CT_UNITS_PERCENT)
1080 #define MIXERCONTROL_CONTROLTYPE_SLIDER (MIXERCONTROL_CT_CLASS_SLIDER | MIXERCONTROL_CT_UNITS_SIGNED)
1081 #define MIXERCONTROL_CONTROLTYPE_PAN (MIXERCONTROL_CONTROLTYPE_SLIDER + 1)
1082 #define MIXERCONTROL_CONTROLTYPE_QSOUNDPAN (MIXERCONTROL_CONTROLTYPE_SLIDER + 2)
1083 #define MIXERCONTROL_CONTROLTYPE_FADER (MIXERCONTROL_CT_CLASS_FADER | MIXERCONTROL_CT_UNITS_UNSIGNED)
1084 #define MIXERCONTROL_CONTROLTYPE_VOLUME (MIXERCONTROL_CONTROLTYPE_FADER + 1)
1085 #define MIXERCONTROL_CONTROLTYPE_BASS (MIXERCONTROL_CONTROLTYPE_FADER + 2)
1086 #define MIXERCONTROL_CONTROLTYPE_TREBLE (MIXERCONTROL_CONTROLTYPE_FADER + 3)
1087 #define MIXERCONTROL_CONTROLTYPE_EQUALIZER (MIXERCONTROL_CONTROLTYPE_FADER + 4)
1088 #define MIXERCONTROL_CONTROLTYPE_SINGLESELECT (MIXERCONTROL_CT_CLASS_LIST | MIXERCONTROL_CT_SC_LIST_SINGLE | MIXERCONTROL_CT_UNITS_BOOLEAN)
1089 #define MIXERCONTROL_CONTROLTYPE_MUX (MIXERCONTROL_CONTROLTYPE_SINGLESELECT + 1)
1090 #define MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT (MIXERCONTROL_CT_CLASS_LIST | MIXERCONTROL_CT_SC_LIST_MULTIPLE | MIXERCONTROL_CT_UNITS_BOOLEAN)
1091 #define MIXERCONTROL_CONTROLTYPE_MIXER (MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT + 1)
1092 #define MIXERCONTROL_CONTROLTYPE_MICROTIME (MIXERCONTROL_CT_CLASS_TIME | MIXERCONTROL_CT_SC_TIME_MICROSECS | MIXERCONTROL_CT_UNITS_UNSIGNED)
1093 #define MIXERCONTROL_CONTROLTYPE_MILLITIME (MIXERCONTROL_CT_CLASS_TIME | MIXERCONTROL_CT_SC_TIME_MILLISECS | MIXERCONTROL_CT_UNITS_UNSIGNED)
1099 DWORD dwControlType
;
1101 DWORD cMultipleItems
;
1102 CHAR szShortName
[MIXER_SHORT_NAME_CHARS
];
1103 CHAR szName
[MIXER_LONG_NAME_CHARS
];
1113 DWORD dwReserved
[6];
1118 DWORD dwReserved
[6];
1120 } MIXERCONTROLA
, *LPMIXERCONTROLA
;
1125 DWORD dwControlType
;
1127 DWORD cMultipleItems
;
1128 WCHAR szShortName
[MIXER_SHORT_NAME_CHARS
];
1129 WCHAR szName
[MIXER_LONG_NAME_CHARS
];
1139 DWORD dwReserved
[6];
1144 DWORD dwReserved
[6];
1146 } MIXERCONTROLW
, *LPMIXERCONTROLW
;
1148 DECL_WINELIB_TYPE_AW(MIXERCONTROL
)
1149 DECL_WINELIB_TYPE_AW(LPMIXERCONTROL
)
1156 DWORD dwControlType
;
1160 LPMIXERCONTROLA pamxctrl
;
1161 } MIXERLINECONTROLSA
, *LPMIXERLINECONTROLSA
;
1168 DWORD dwControlType
;
1172 LPMIXERCONTROLW pamxctrl
;
1173 } MIXERLINECONTROLSW
, *LPMIXERLINECONTROLSW
;
1175 DECL_WINELIB_TYPE_AW(MIXERLINECONTROLS
)
1176 DECL_WINELIB_TYPE_AW(LPMIXERLINECONTROLS
)
1184 DWORD cMultipleItems
;
1188 } MIXERCONTROLDETAILS
,*LPMIXERCONTROLDETAILS
;
1193 CHAR szName
[MIXER_LONG_NAME_CHARS
];
1194 } MIXERCONTROLDETAILS_LISTTEXTA
,*LPMIXERCONTROLDETAILS_LISTTEXTA
;
1199 WCHAR szName
[MIXER_LONG_NAME_CHARS
];
1200 } MIXERCONTROLDETAILS_LISTTEXTW
,*LPMIXERCONTROLDETAILS_LISTTEXTW
;
1202 DECL_WINELIB_TYPE_AW(MIXERCONTROLDETAILS_LISTTEXT
)
1203 DECL_WINELIB_TYPE_AW(LPMIXERCONTROLDETAILS_LISTTEXT
)
1205 /* MIXER_GETCONTROLDETAILSF_VALUE */
1208 } MIXERCONTROLDETAILS_BOOLEAN
,*LPMIXERCONTROLDETAILS_BOOLEAN
;
1212 } MIXERCONTROLDETAILS_SIGNED
,*LPMIXERCONTROLDETAILS_SIGNED
;
1216 } MIXERCONTROLDETAILS_UNSIGNED
,*LPMIXERCONTROLDETAILS_UNSIGNED
;
1218 /* bits passed to mixerGetLineInfo.fdwInfo */
1219 #define MIXER_GETLINEINFOF_DESTINATION 0x00000000L
1220 #define MIXER_GETLINEINFOF_SOURCE 0x00000001L
1221 #define MIXER_GETLINEINFOF_LINEID 0x00000002L
1222 #define MIXER_GETLINEINFOF_COMPONENTTYPE 0x00000003L
1223 #define MIXER_GETLINEINFOF_TARGETTYPE 0x00000004L
1224 #define MIXER_GETLINEINFOF_QUERYMASK 0x0000000FL
1226 /* bitmask passed to mixerGetLineControl */
1227 #define MIXER_GETLINECONTROLSF_ALL 0x00000000L
1228 #define MIXER_GETLINECONTROLSF_ONEBYID 0x00000001L
1229 #define MIXER_GETLINECONTROLSF_ONEBYTYPE 0x00000002L
1230 #define MIXER_GETLINECONTROLSF_QUERYMASK 0x0000000FL
1232 /* bitmask passed to mixerGetControlDetails */
1233 #define MIXER_GETCONTROLDETAILSF_VALUE 0x00000000L
1234 #define MIXER_GETCONTROLDETAILSF_LISTTEXT 0x00000001L
1235 #define MIXER_GETCONTROLDETAILSF_QUERYMASK 0x0000000FL
1237 /* bitmask passed to mixerSetControlDetails */
1238 #define MIXER_SETCONTROLDETAILSF_VALUE 0x00000000L
1239 #define MIXER_SETCONTROLDETAILSF_CUSTOM 0x00000001L
1240 #define MIXER_SETCONTROLDETAILSF_QUERYMASK 0x0000000FL
1242 UINT WINAPI
mixerGetNumDevs(void);
1243 UINT WINAPI
mixerOpen(LPHMIXER
,UINT
,DWORD_PTR
,DWORD_PTR
,DWORD
);
1244 UINT WINAPI
mixerClose(HMIXER
);
1245 UINT WINAPI
mixerMessage(HMIXER
,UINT
,DWORD_PTR
,DWORD_PTR
);
1246 UINT WINAPI
mixerGetDevCapsA(UINT_PTR
,LPMIXERCAPSA
,UINT
);
1247 UINT WINAPI
mixerGetDevCapsW(UINT_PTR
,LPMIXERCAPSW
,UINT
);
1248 #define mixerGetDevCaps WINELIB_NAME_AW(mixerGetDevCaps)
1249 UINT WINAPI
mixerGetLineInfoA(HMIXEROBJ
,LPMIXERLINEA
,DWORD
);
1250 UINT WINAPI
mixerGetLineInfoW(HMIXEROBJ
,LPMIXERLINEW
,DWORD
);
1251 #define mixerGetLineInfo WINELIB_NAME_AW(mixerGetLineInfo)
1252 UINT WINAPI
mixerGetID(HMIXEROBJ
,LPUINT
,DWORD
);
1253 UINT WINAPI
mixerGetLineControlsA(HMIXEROBJ
,LPMIXERLINECONTROLSA
,DWORD
);
1254 UINT WINAPI
mixerGetLineControlsW(HMIXEROBJ
,LPMIXERLINECONTROLSW
,DWORD
);
1255 #define mixerGetLineControls WINELIB_NAME_AW(mixerGetLineControls)
1256 UINT WINAPI
mixerGetControlDetailsA(HMIXEROBJ
,LPMIXERCONTROLDETAILS
,DWORD
);
1257 UINT WINAPI
mixerGetControlDetailsW(HMIXEROBJ
,LPMIXERCONTROLDETAILS
,DWORD
);
1258 #define mixerGetControlDetails WINELIB_NAME_AW(mixerGetControlDetails)
1259 UINT WINAPI
mixerSetControlDetails(HMIXEROBJ
,LPMIXERCONTROLDETAILS
,DWORD
);
1261 #define MMIOERR_BASE 256
1262 #define MMIOERR_FILENOTFOUND (MMIOERR_BASE + 1) /* file not found */
1263 #define MMIOERR_OUTOFMEMORY (MMIOERR_BASE + 2) /* out of memory */
1264 #define MMIOERR_CANNOTOPEN (MMIOERR_BASE + 3) /* cannot open */
1265 #define MMIOERR_CANNOTCLOSE (MMIOERR_BASE + 4) /* cannot close */
1266 #define MMIOERR_CANNOTREAD (MMIOERR_BASE + 5) /* cannot read */
1267 #define MMIOERR_CANNOTWRITE (MMIOERR_BASE + 6) /* cannot write */
1268 #define MMIOERR_CANNOTSEEK (MMIOERR_BASE + 7) /* cannot seek */
1269 #define MMIOERR_CANNOTEXPAND (MMIOERR_BASE + 8) /* cannot expand file */
1270 #define MMIOERR_CHUNKNOTFOUND (MMIOERR_BASE + 9) /* chunk not found */
1271 #define MMIOERR_UNBUFFERED (MMIOERR_BASE + 10) /* file is unbuffered */
1273 #define CFSEPCHAR '+' /* compound file name separator char. */
1275 typedef DWORD FOURCC
; /* a four character code */
1276 typedef LRESULT (CALLBACK
*LPMMIOPROC
) (LPSTR lpmmioinfo
, UINT uMessage
,
1277 LPARAM lParam1
, LPARAM lParam2
);
1285 /* fields maintained by MMIO functions during buffered I/O */
1292 /* fields maintained by I/O procedure */
1295 /* other fields maintained by MMIO */
1299 } MMIOINFO
, *PMMIOINFO
, *LPMMIOINFO
;
1302 typedef struct _MMCKINFO
1304 FOURCC ckid
; /* chunk ID */
1305 DWORD cksize
; /* chunk size */
1306 FOURCC fccType
; /* form type or list type */
1307 DWORD dwDataOffset
; /* offset of data portion of chunk */
1308 DWORD dwFlags
; /* flags used by MMIO functions */
1309 } MMCKINFO
, *LPMMCKINFO
;
1311 #define MMIO_RWMODE 0x00000003 /* open file for reading/writing/both */
1312 #define MMIO_SHAREMODE 0x00000070 /* file sharing mode number */
1314 #define MMIO_CREATE 0x00001000 /* create new file (or truncate file) */
1315 #define MMIO_PARSE 0x00000100 /* parse new file returning path */
1316 #define MMIO_DELETE 0x00000200 /* create new file (or truncate file) */
1317 #define MMIO_EXIST 0x00004000 /* checks for existence of file */
1318 #define MMIO_ALLOCBUF 0x00010000 /* mmioOpen() should allocate a buffer */
1319 #define MMIO_GETTEMP 0x00020000 /* mmioOpen() should retrieve temp name */
1321 #define MMIO_DIRTY 0x10000000 /* I/O buffer is dirty */
1323 #define MMIO_READ 0x00000000 /* open file for reading only */
1324 #define MMIO_WRITE 0x00000001 /* open file for writing only */
1325 #define MMIO_READWRITE 0x00000002 /* open file for reading and writing */
1327 #define MMIO_COMPAT 0x00000000 /* compatibility mode */
1328 #define MMIO_EXCLUSIVE 0x00000010 /* exclusive-access mode */
1329 #define MMIO_DENYWRITE 0x00000020 /* deny writing to other processes */
1330 #define MMIO_DENYREAD 0x00000030 /* deny reading to other processes */
1331 #define MMIO_DENYNONE 0x00000040 /* deny nothing to other processes */
1333 #define MMIO_FHOPEN 0x0010 /* mmioClose: keep file handle open */
1334 #define MMIO_EMPTYBUF 0x0010 /* mmioFlush: empty the I/O buffer */
1335 #define MMIO_TOUPPER 0x0010 /* mmioStringToFOURCC: to u-case */
1336 #define MMIO_INSTALLPROC 0x00010000 /* mmioInstallIOProc: install MMIOProc */
1337 #define MMIO_GLOBALPROC 0x10000000 /* mmioInstallIOProc: install globally */
1338 #define MMIO_REMOVEPROC 0x00020000 /* mmioInstallIOProc: remove MMIOProc */
1339 #define MMIO_FINDPROC 0x00040000 /* mmioInstallIOProc: find an MMIOProc */
1340 #define MMIO_FINDCHUNK 0x0010 /* mmioDescend: find a chunk by ID */
1341 #define MMIO_FINDRIFF 0x0020 /* mmioDescend: find a LIST chunk */
1342 #define MMIO_FINDLIST 0x0040 /* mmioDescend: find a RIFF chunk */
1343 #define MMIO_CREATERIFF 0x0020 /* mmioCreateChunk: make a LIST chunk */
1344 #define MMIO_CREATELIST 0x0040 /* mmioCreateChunk: make a RIFF chunk */
1350 #endif /* SEEK_SET */
1352 #define MMIOM_READ MMIO_READ /* read */
1353 #define MMIOM_WRITE MMIO_WRITE /* write */
1354 #define MMIOM_SEEK 2 /* seek to a new position in file */
1355 #define MMIOM_OPEN 3 /* open file */
1356 #define MMIOM_CLOSE 4 /* close file */
1357 #define MMIOM_WRITEFLUSH 5 /* write and flush */
1359 #define MMIOM_RENAME 6 /* rename specified file */
1361 #define MMIOM_USER 0x8000 /* beginning of user-defined messages */
1363 #define FOURCC_RIFF mmioFOURCC('R', 'I', 'F', 'F')
1364 #define FOURCC_LIST mmioFOURCC('L', 'I', 'S', 'T')
1366 #define FOURCC_DOS mmioFOURCC('D', 'O', 'S', ' ')
1367 #define FOURCC_MEM mmioFOURCC('M', 'E', 'M', ' ')
1369 #define MMIO_DEFAULTBUFFER 8192 /* default buffer size */
1371 #define mmioFOURCC( ch0, ch1, ch2, ch3 ) \
1372 ( (DWORD)(BYTE)(ch0) | ( (DWORD)(BYTE)(ch1) << 8 ) | \
1373 ( (DWORD)(BYTE)(ch2) << 16 ) | ( (DWORD)(BYTE)(ch3) << 24 ) )
1375 LPMMIOPROC WINAPI
mmioInstallIOProcA(FOURCC
,LPMMIOPROC
,DWORD
);
1376 LPMMIOPROC WINAPI
mmioInstallIOProcW(FOURCC
,LPMMIOPROC
,DWORD
);
1377 #define mmioInstallIOProc WINELIB_NAME_AW(mmioInstallIOProc)
1379 FOURCC WINAPI
mmioStringToFOURCCA(LPCSTR
,UINT
);
1380 FOURCC WINAPI
mmioStringToFOURCCW(LPCWSTR
,UINT
);
1381 #define mmioStringToFOURCC WINELIB_NAME_AW(mmioStringToFOURCC)
1382 HMMIO WINAPI
mmioOpenA(LPSTR
,MMIOINFO
*,DWORD
);
1383 HMMIO WINAPI
mmioOpenW(LPWSTR
,MMIOINFO
*,DWORD
);
1384 #define mmioOpen WINELIB_NAME_AW(mmioOpen)
1386 MMRESULT WINAPI
mmioRenameA(LPCSTR szFileName
, LPCSTR szNewFileName
,
1387 const MMIOINFO
* lpmmioinfo
, DWORD dwRenameFlags
);
1388 MMRESULT WINAPI
mmioRenameW(LPCWSTR szFileName
, LPCWSTR szNewFileName
,
1389 const MMIOINFO
* lpmmioinfo
, DWORD dwRenameFlags
);
1390 #define mmioRename WINELIB_NAME_AW(mmioRename)
1392 MMRESULT WINAPI
mmioClose(HMMIO
,UINT
);
1393 LONG WINAPI
mmioRead(HMMIO
,HPSTR
,LONG
);
1394 LONG WINAPI
mmioWrite(HMMIO
,HPCSTR
,LONG
);
1395 LONG WINAPI
mmioSeek(HMMIO
,LONG
,INT
);
1396 MMRESULT WINAPI
mmioGetInfo(HMMIO
,MMIOINFO
*,UINT
);
1397 MMRESULT WINAPI
mmioSetInfo(HMMIO
,const MMIOINFO
*,UINT
);
1398 MMRESULT WINAPI
mmioSetBuffer(HMMIO
,LPSTR
,LONG
,UINT
);
1399 MMRESULT WINAPI
mmioFlush(HMMIO
,UINT
);
1400 MMRESULT WINAPI
mmioAdvance(HMMIO
,MMIOINFO
*,UINT
);
1401 LRESULT WINAPI
mmioSendMessage(HMMIO
,UINT
,LPARAM
,LPARAM
);
1402 MMRESULT WINAPI
mmioDescend(HMMIO
,MMCKINFO
*,const MMCKINFO
*,UINT
);
1403 MMRESULT WINAPI
mmioAscend(HMMIO
,MMCKINFO
*,UINT
);
1404 MMRESULT WINAPI
mmioCreateChunk(HMMIO
,MMCKINFO
*,UINT
);
1406 typedef UINT (CALLBACK
*YIELDPROC
)(MCIDEVICEID
,DWORD
);
1408 DWORD WINAPI
mciSendCommandA(MCIDEVICEID
,UINT
,DWORD_PTR
,DWORD_PTR
);
1409 DWORD WINAPI
mciSendCommandW(MCIDEVICEID
,UINT
,DWORD_PTR
,DWORD_PTR
);
1410 #define mciSendCommand WINELIB_NAME_AW(mciSendCommand)
1411 DWORD WINAPI
mciSendStringA(LPCSTR
,LPSTR
,UINT
,HWND
);
1412 DWORD WINAPI
mciSendStringW(LPCWSTR
,LPWSTR
,UINT
,HWND
);
1413 #define mciSendString WINELIB_NAME_AW(mciSendString)
1414 UINT WINAPI
mciGetDeviceIDA(LPCSTR
);
1415 UINT WINAPI
mciGetDeviceIDW(LPCWSTR
);
1416 #define mciGetDeviceID WINELIB_NAME_AW(mciGetDeviceID)
1417 BOOL WINAPI
mciGetErrorStringA(MCIERROR
,LPSTR
,UINT
);
1418 BOOL WINAPI
mciGetErrorStringW(MCIERROR
,LPWSTR
,UINT
);
1419 #define mciGetErrorString WINELIB_NAME_AW(mciGetErrorString)
1420 BOOL WINAPI
mciSetYieldProc(MCIDEVICEID
,YIELDPROC
,DWORD
);
1421 HTASK WINAPI
mciGetCreatorTask(MCIDEVICEID
);
1422 YIELDPROC WINAPI
mciGetYieldProc(MCIDEVICEID
,DWORD
*);
1424 #define MCIERR_INVALID_DEVICE_ID (MCIERR_BASE + 1)
1425 #define MCIERR_UNRECOGNIZED_KEYWORD (MCIERR_BASE + 3)
1426 #define MCIERR_UNRECOGNIZED_COMMAND (MCIERR_BASE + 5)
1427 #define MCIERR_HARDWARE (MCIERR_BASE + 6)
1428 #define MCIERR_INVALID_DEVICE_NAME (MCIERR_BASE + 7)
1429 #define MCIERR_OUT_OF_MEMORY (MCIERR_BASE + 8)
1430 #define MCIERR_DEVICE_OPEN (MCIERR_BASE + 9)
1431 #define MCIERR_CANNOT_LOAD_DRIVER (MCIERR_BASE + 10)
1432 #define MCIERR_MISSING_COMMAND_STRING (MCIERR_BASE + 11)
1433 #define MCIERR_PARAM_OVERFLOW (MCIERR_BASE + 12)
1434 #define MCIERR_MISSING_STRING_ARGUMENT (MCIERR_BASE + 13)
1435 #define MCIERR_BAD_INTEGER (MCIERR_BASE + 14)
1436 #define MCIERR_PARSER_INTERNAL (MCIERR_BASE + 15)
1437 #define MCIERR_DRIVER_INTERNAL (MCIERR_BASE + 16)
1438 #define MCIERR_MISSING_PARAMETER (MCIERR_BASE + 17)
1439 #define MCIERR_UNSUPPORTED_FUNCTION (MCIERR_BASE + 18)
1440 #define MCIERR_FILE_NOT_FOUND (MCIERR_BASE + 19)
1441 #define MCIERR_DEVICE_NOT_READY (MCIERR_BASE + 20)
1442 #define MCIERR_INTERNAL (MCIERR_BASE + 21)
1443 #define MCIERR_DRIVER (MCIERR_BASE + 22)
1444 #define MCIERR_CANNOT_USE_ALL (MCIERR_BASE + 23)
1445 #define MCIERR_MULTIPLE (MCIERR_BASE + 24)
1446 #define MCIERR_EXTENSION_NOT_FOUND (MCIERR_BASE + 25)
1447 #define MCIERR_OUTOFRANGE (MCIERR_BASE + 26)
1448 #define MCIERR_FLAGS_NOT_COMPATIBLE (MCIERR_BASE + 28)
1449 #define MCIERR_FILE_NOT_SAVED (MCIERR_BASE + 30)
1450 #define MCIERR_DEVICE_TYPE_REQUIRED (MCIERR_BASE + 31)
1451 #define MCIERR_DEVICE_LOCKED (MCIERR_BASE + 32)
1452 #define MCIERR_DUPLICATE_ALIAS (MCIERR_BASE + 33)
1453 #define MCIERR_BAD_CONSTANT (MCIERR_BASE + 34)
1454 #define MCIERR_MUST_USE_SHAREABLE (MCIERR_BASE + 35)
1455 #define MCIERR_MISSING_DEVICE_NAME (MCIERR_BASE + 36)
1456 #define MCIERR_BAD_TIME_FORMAT (MCIERR_BASE + 37)
1457 #define MCIERR_NO_CLOSING_QUOTE (MCIERR_BASE + 38)
1458 #define MCIERR_DUPLICATE_FLAGS (MCIERR_BASE + 39)
1459 #define MCIERR_INVALID_FILE (MCIERR_BASE + 40)
1460 #define MCIERR_NULL_PARAMETER_BLOCK (MCIERR_BASE + 41)
1461 #define MCIERR_UNNAMED_RESOURCE (MCIERR_BASE + 42)
1462 #define MCIERR_NEW_REQUIRES_ALIAS (MCIERR_BASE + 43)
1463 #define MCIERR_NOTIFY_ON_AUTO_OPEN (MCIERR_BASE + 44)
1464 #define MCIERR_NO_ELEMENT_ALLOWED (MCIERR_BASE + 45)
1465 #define MCIERR_NONAPPLICABLE_FUNCTION (MCIERR_BASE + 46)
1466 #define MCIERR_ILLEGAL_FOR_AUTO_OPEN (MCIERR_BASE + 47)
1467 #define MCIERR_FILENAME_REQUIRED (MCIERR_BASE + 48)
1468 #define MCIERR_EXTRA_CHARACTERS (MCIERR_BASE + 49)
1469 #define MCIERR_DEVICE_NOT_INSTALLED (MCIERR_BASE + 50)
1470 #define MCIERR_GET_CD (MCIERR_BASE + 51)
1471 #define MCIERR_SET_CD (MCIERR_BASE + 52)
1472 #define MCIERR_SET_DRIVE (MCIERR_BASE + 53)
1473 #define MCIERR_DEVICE_LENGTH (MCIERR_BASE + 54)
1474 #define MCIERR_DEVICE_ORD_LENGTH (MCIERR_BASE + 55)
1475 #define MCIERR_NO_INTEGER (MCIERR_BASE + 56)
1477 #define MCIERR_WAVE_OUTPUTSINUSE (MCIERR_BASE + 64)
1478 #define MCIERR_WAVE_SETOUTPUTINUSE (MCIERR_BASE + 65)
1479 #define MCIERR_WAVE_INPUTSINUSE (MCIERR_BASE + 66)
1480 #define MCIERR_WAVE_SETINPUTINUSE (MCIERR_BASE + 67)
1481 #define MCIERR_WAVE_OUTPUTUNSPECIFIED (MCIERR_BASE + 68)
1482 #define MCIERR_WAVE_INPUTUNSPECIFIED (MCIERR_BASE + 69)
1483 #define MCIERR_WAVE_OUTPUTSUNSUITABLE (MCIERR_BASE + 70)
1484 #define MCIERR_WAVE_SETOUTPUTUNSUITABLE (MCIERR_BASE + 71)
1485 #define MCIERR_WAVE_INPUTSUNSUITABLE (MCIERR_BASE + 72)
1486 #define MCIERR_WAVE_SETINPUTUNSUITABLE (MCIERR_BASE + 73)
1488 #define MCIERR_SEQ_DIV_INCOMPATIBLE (MCIERR_BASE + 80)
1489 #define MCIERR_SEQ_PORT_INUSE (MCIERR_BASE + 81)
1490 #define MCIERR_SEQ_PORT_NONEXISTENT (MCIERR_BASE + 82)
1491 #define MCIERR_SEQ_PORT_MAPNODEVICE (MCIERR_BASE + 83)
1492 #define MCIERR_SEQ_PORT_MISCERROR (MCIERR_BASE + 84)
1493 #define MCIERR_SEQ_TIMER (MCIERR_BASE + 85)
1494 #define MCIERR_SEQ_PORTUNSPECIFIED (MCIERR_BASE + 86)
1495 #define MCIERR_SEQ_NOMIDIPRESENT (MCIERR_BASE + 87)
1497 #define MCIERR_NO_WINDOW (MCIERR_BASE + 90)
1498 #define MCIERR_CREATEWINDOW (MCIERR_BASE + 91)
1499 #define MCIERR_FILE_READ (MCIERR_BASE + 92)
1500 #define MCIERR_FILE_WRITE (MCIERR_BASE + 93)
1502 #define MCIERR_NO_IDENTITY (MCIERR_BASE + 94)
1504 #define MCIERR_CUSTOM_DRIVER_BASE (MCIERR_BASE + 256)
1506 #define MCI_OPEN_DRIVER 0x0801
1507 #define MCI_CLOSE_DRIVER 0x0802
1508 #define MCI_OPEN 0x0803
1509 #define MCI_CLOSE 0x0804
1510 #define MCI_ESCAPE 0x0805
1511 #define MCI_PLAY 0x0806
1512 #define MCI_SEEK 0x0807
1513 #define MCI_STOP 0x0808
1514 #define MCI_PAUSE 0x0809
1515 #define MCI_INFO 0x080A
1516 #define MCI_GETDEVCAPS 0x080B
1517 #define MCI_SPIN 0x080C
1518 #define MCI_SET 0x080D
1519 #define MCI_STEP 0x080E
1520 #define MCI_RECORD 0x080F
1521 #define MCI_SYSINFO 0x0810
1522 #define MCI_BREAK 0x0811
1523 #define MCI_SOUND 0x0812
1524 #define MCI_SAVE 0x0813
1525 #define MCI_STATUS 0x0814
1526 #define MCI_CUE 0x0830
1527 #define MCI_REALIZE 0x0840
1528 #define MCI_WINDOW 0x0841
1529 #define MCI_PUT 0x0842
1530 #define MCI_WHERE 0x0843
1531 #define MCI_FREEZE 0x0844
1532 #define MCI_UNFREEZE 0x0845
1533 #define MCI_LOAD 0x0850
1534 #define MCI_CUT 0x0851
1535 #define MCI_COPY 0x0852
1536 #define MCI_PASTE 0x0853
1537 #define MCI_UPDATE 0x0854
1538 #define MCI_RESUME 0x0855
1539 #define MCI_DELETE 0x0856
1541 #define MCI_USER_MESSAGES (0x400 + DRV_MCI_FIRST)
1543 #define MCI_ALL_DEVICE_ID 0xFFFF
1545 #define MCI_DEVTYPE_VCR (MCI_STRING_OFFSET + 1)
1546 #define MCI_DEVTYPE_VIDEODISC (MCI_STRING_OFFSET + 2)
1547 #define MCI_DEVTYPE_OVERLAY (MCI_STRING_OFFSET + 3)
1548 #define MCI_DEVTYPE_CD_AUDIO (MCI_STRING_OFFSET + 4)
1549 #define MCI_DEVTYPE_DAT (MCI_STRING_OFFSET + 5)
1550 #define MCI_DEVTYPE_SCANNER (MCI_STRING_OFFSET + 6)
1551 #define MCI_DEVTYPE_ANIMATION (MCI_STRING_OFFSET + 7)
1552 #define MCI_DEVTYPE_DIGITAL_VIDEO (MCI_STRING_OFFSET + 8)
1553 #define MCI_DEVTYPE_OTHER (MCI_STRING_OFFSET + 9)
1554 #define MCI_DEVTYPE_WAVEFORM_AUDIO (MCI_STRING_OFFSET + 10)
1555 #define MCI_DEVTYPE_SEQUENCER (MCI_STRING_OFFSET + 11)
1557 #define MCI_DEVTYPE_FIRST MCI_DEVTYPE_VCR
1558 #define MCI_DEVTYPE_LAST MCI_DEVTYPE_SEQUENCER
1560 #define MCI_MODE_NOT_READY (MCI_STRING_OFFSET + 12)
1561 #define MCI_MODE_STOP (MCI_STRING_OFFSET + 13)
1562 #define MCI_MODE_PLAY (MCI_STRING_OFFSET + 14)
1563 #define MCI_MODE_RECORD (MCI_STRING_OFFSET + 15)
1564 #define MCI_MODE_SEEK (MCI_STRING_OFFSET + 16)
1565 #define MCI_MODE_PAUSE (MCI_STRING_OFFSET + 17)
1566 #define MCI_MODE_OPEN (MCI_STRING_OFFSET + 18)
1568 #define MCI_FORMAT_MILLISECONDS 0
1569 #define MCI_FORMAT_HMS 1
1570 #define MCI_FORMAT_MSF 2
1571 #define MCI_FORMAT_FRAMES 3
1572 #define MCI_FORMAT_SMPTE_24 4
1573 #define MCI_FORMAT_SMPTE_25 5
1574 #define MCI_FORMAT_SMPTE_30 6
1575 #define MCI_FORMAT_SMPTE_30DROP 7
1576 #define MCI_FORMAT_BYTES 8
1577 #define MCI_FORMAT_SAMPLES 9
1578 #define MCI_FORMAT_TMSF 10
1580 #define MCI_MSF_MINUTE(msf) ((BYTE)(msf))
1581 #define MCI_MSF_SECOND(msf) ((BYTE)(((WORD)(msf)) >> 8))
1582 #define MCI_MSF_FRAME(msf) ((BYTE)((msf)>>16))
1584 #define MCI_MAKE_MSF(m, s, f) ((DWORD)(((BYTE)(m) | \
1586 (((DWORD)(BYTE)(f))<<16)))
1588 #define MCI_TMSF_TRACK(tmsf) ((BYTE)(tmsf))
1589 #define MCI_TMSF_MINUTE(tmsf) ((BYTE)(((WORD)(tmsf)) >> 8))
1590 #define MCI_TMSF_SECOND(tmsf) ((BYTE)((tmsf)>>16))
1591 #define MCI_TMSF_FRAME(tmsf) ((BYTE)((tmsf)>>24))
1593 #define MCI_MAKE_TMSF(t, m, s, f) ((DWORD)(((BYTE)(t) | \
1595 (((DWORD)(BYTE)(s) | \
1596 ((WORD)(f)<<8))<<16)))
1598 #define MCI_HMS_HOUR(hms) ((BYTE)(hms))
1599 #define MCI_HMS_MINUTE(hms) ((BYTE)(((WORD)(hms)) >> 8))
1600 #define MCI_HMS_SECOND(hms) ((BYTE)((hms)>>16))
1602 #define MCI_MAKE_HMS(h, m, s) ((DWORD)(((BYTE)(h) | \
1604 (((DWORD)(BYTE)(s))<<16)))
1606 #define MCI_NOTIFY_SUCCESSFUL 0x0001
1607 #define MCI_NOTIFY_SUPERSEDED 0x0002
1608 #define MCI_NOTIFY_ABORTED 0x0004
1609 #define MCI_NOTIFY_FAILURE 0x0008
1611 #define MCI_NOTIFY 0x00000001L
1612 #define MCI_WAIT 0x00000002L
1613 #define MCI_FROM 0x00000004L
1614 #define MCI_TO 0x00000008L
1615 #define MCI_TRACK 0x00000010L
1617 #define MCI_OPEN_SHAREABLE 0x00000100L
1618 #define MCI_OPEN_ELEMENT 0x00000200L
1619 #define MCI_OPEN_ALIAS 0x00000400L
1620 #define MCI_OPEN_ELEMENT_ID 0x00000800L
1621 #define MCI_OPEN_TYPE_ID 0x00001000L
1622 #define MCI_OPEN_TYPE 0x00002000L
1624 #define MCI_SEEK_TO_START 0x00000100L
1625 #define MCI_SEEK_TO_END 0x00000200L
1627 #define MCI_STATUS_ITEM 0x00000100L
1628 #define MCI_STATUS_START 0x00000200L
1630 #define MCI_STATUS_LENGTH 0x00000001L
1631 #define MCI_STATUS_POSITION 0x00000002L
1632 #define MCI_STATUS_NUMBER_OF_TRACKS 0x00000003L
1633 #define MCI_STATUS_MODE 0x00000004L
1634 #define MCI_STATUS_MEDIA_PRESENT 0x00000005L
1635 #define MCI_STATUS_TIME_FORMAT 0x00000006L
1636 #define MCI_STATUS_READY 0x00000007L
1637 #define MCI_STATUS_CURRENT_TRACK 0x00000008L
1639 #define MCI_INFO_PRODUCT 0x00000100L
1640 #define MCI_INFO_FILE 0x00000200L
1641 #define MCI_INFO_MEDIA_UPC 0x00000400L
1642 #define MCI_INFO_MEDIA_IDENTITY 0x00000800L
1643 #define MCI_INFO_NAME 0x00001000L
1644 #define MCI_INFO_COPYRIGHT 0x00002000L
1646 #define MCI_GETDEVCAPS_ITEM 0x00000100L
1648 #define MCI_GETDEVCAPS_CAN_RECORD 0x00000001L
1649 #define MCI_GETDEVCAPS_HAS_AUDIO 0x00000002L
1650 #define MCI_GETDEVCAPS_HAS_VIDEO 0x00000003L
1651 #define MCI_GETDEVCAPS_DEVICE_TYPE 0x00000004L
1652 #define MCI_GETDEVCAPS_USES_FILES 0x00000005L
1653 #define MCI_GETDEVCAPS_COMPOUND_DEVICE 0x00000006L
1654 #define MCI_GETDEVCAPS_CAN_EJECT 0x00000007L
1655 #define MCI_GETDEVCAPS_CAN_PLAY 0x00000008L
1656 #define MCI_GETDEVCAPS_CAN_SAVE 0x00000009L
1658 #define MCI_SYSINFO_QUANTITY 0x00000100L
1659 #define MCI_SYSINFO_OPEN 0x00000200L
1660 #define MCI_SYSINFO_NAME 0x00000400L
1661 #define MCI_SYSINFO_INSTALLNAME 0x00000800L
1663 #define MCI_SET_DOOR_OPEN 0x00000100L
1664 #define MCI_SET_DOOR_CLOSED 0x00000200L
1665 #define MCI_SET_TIME_FORMAT 0x00000400L
1666 #define MCI_SET_AUDIO 0x00000800L
1667 #define MCI_SET_VIDEO 0x00001000L
1668 #define MCI_SET_ON 0x00002000L
1669 #define MCI_SET_OFF 0x00004000L
1671 #define MCI_SET_AUDIO_ALL 0x00000000L
1672 #define MCI_SET_AUDIO_LEFT 0x00000001L
1673 #define MCI_SET_AUDIO_RIGHT 0x00000002L
1675 #define MCI_BREAK_KEY 0x00000100L
1676 #define MCI_BREAK_HWND 0x00000200L
1677 #define MCI_BREAK_OFF 0x00000400L
1679 #define MCI_RECORD_INSERT 0x00000100L
1680 #define MCI_RECORD_OVERWRITE 0x00000200L
1682 #define MCI_SOUND_NAME 0x00000100L
1684 #define MCI_SAVE_FILE 0x00000100L
1686 #define MCI_LOAD_FILE 0x00000100L
1689 DWORD_PTR dwCallback
;
1690 } MCI_GENERIC_PARMS
, *LPMCI_GENERIC_PARMS
;
1693 DWORD_PTR dwCallback
;
1694 MCIDEVICEID wDeviceID
;
1695 LPSTR lpstrDeviceType
;
1696 LPSTR lpstrElementName
;
1698 } MCI_OPEN_PARMSA
, *LPMCI_OPEN_PARMSA
;
1701 DWORD_PTR dwCallback
;
1702 MCIDEVICEID wDeviceID
;
1703 LPWSTR lpstrDeviceType
;
1704 LPWSTR lpstrElementName
;
1706 } MCI_OPEN_PARMSW
, *LPMCI_OPEN_PARMSW
;
1708 DECL_WINELIB_TYPE_AW(MCI_OPEN_PARMS
)
1709 DECL_WINELIB_TYPE_AW(LPMCI_OPEN_PARMS
)
1712 DWORD_PTR dwCallback
;
1715 } MCI_PLAY_PARMS
, *LPMCI_PLAY_PARMS
;
1718 DWORD_PTR dwCallback
;
1720 } MCI_SEEK_PARMS
, *LPMCI_SEEK_PARMS
;
1723 DWORD_PTR dwCallback
;
1727 } MCI_STATUS_PARMS
, *LPMCI_STATUS_PARMS
;
1730 DWORD_PTR dwCallback
;
1733 } MCI_INFO_PARMSA
, *LPMCI_INFO_PARMSA
;
1736 DWORD_PTR dwCallback
;
1739 } MCI_INFO_PARMSW
, *LPMCI_INFO_PARMSW
;
1741 DECL_WINELIB_TYPE_AW(MCI_INFO_PARMS
)
1742 DECL_WINELIB_TYPE_AW(LPMCI_INFO_PARMS
)
1745 DWORD_PTR dwCallback
;
1748 } MCI_GETDEVCAPS_PARMS
, *LPMCI_GETDEVCAPS_PARMS
;
1751 DWORD_PTR dwCallback
;
1756 } MCI_SYSINFO_PARMSA
, *LPMCI_SYSINFO_PARMSA
;
1759 DWORD_PTR dwCallback
;
1764 } MCI_SYSINFO_PARMSW
, *LPMCI_SYSINFO_PARMSW
;
1766 DECL_WINELIB_TYPE_AW(MCI_SYSINFO_PARMS
)
1767 DECL_WINELIB_TYPE_AW(LPMCI_SYSINFO_PARMS
)
1770 DWORD_PTR dwCallback
;
1773 } MCI_SET_PARMS
, *LPMCI_SET_PARMS
;
1776 DWORD_PTR dwCallback
;
1779 } MCI_BREAK_PARMS
, *LPMCI_BREAK_PARMS
;
1783 DWORD_PTR dwCallback
;
1784 LPCSTR lpstrSoundName
;
1785 } MCI_SOUND_PARMS
, *LPMCI_SOUND_PARMS
;
1788 DWORD_PTR dwCallback
;
1790 } MCI_SAVE_PARMS
, *LPMCI_SAVE_PARMS
;
1793 DWORD_PTR dwCallback
;
1795 } MCI_LOAD_PARMSA
, *LPMCI_LOAD_PARMSA
;
1798 DWORD_PTR dwCallback
;
1800 } MCI_LOAD_PARMSW
, *LPMCI_LOAD_PARMSW
;
1802 DECL_WINELIB_TYPE_AW(MCI_LOAD_PARMS
)
1803 DECL_WINELIB_TYPE_AW(LPMCI_LOAD_PARMS
)
1806 DWORD_PTR dwCallback
;
1809 } MCI_RECORD_PARMS
, *LPMCI_RECORD_PARMS
;
1811 #define MCI_CDA_STATUS_TYPE_TRACK 0x00004001
1813 #define MCI_CDA_TRACK_AUDIO (MCI_CD_OFFSET + 0)
1814 #define MCI_CDA_TRACK_OTHER (MCI_CD_OFFSET + 1)
1816 #define MCI_VD_MODE_PARK (MCI_VD_OFFSET + 1)
1818 #define MCI_VD_MEDIA_CLV (MCI_VD_OFFSET + 2)
1819 #define MCI_VD_MEDIA_CAV (MCI_VD_OFFSET + 3)
1820 #define MCI_VD_MEDIA_OTHER (MCI_VD_OFFSET + 4)
1822 #define MCI_VD_FORMAT_TRACK 0x4001
1824 #define MCI_VD_PLAY_REVERSE 0x00010000L
1825 #define MCI_VD_PLAY_FAST 0x00020000L
1826 #define MCI_VD_PLAY_SPEED 0x00040000L
1827 #define MCI_VD_PLAY_SCAN 0x00080000L
1828 #define MCI_VD_PLAY_SLOW 0x00100000L
1830 #define MCI_VD_SEEK_REVERSE 0x00010000L
1832 #define MCI_VD_STATUS_SPEED 0x00004002L
1833 #define MCI_VD_STATUS_FORWARD 0x00004003L
1834 #define MCI_VD_STATUS_MEDIA_TYPE 0x00004004L
1835 #define MCI_VD_STATUS_SIDE 0x00004005L
1836 #define MCI_VD_STATUS_DISC_SIZE 0x00004006L
1838 #define MCI_VD_GETDEVCAPS_CLV 0x00010000L
1839 #define MCI_VD_GETDEVCAPS_CAV 0x00020000L
1841 #define MCI_VD_SPIN_UP 0x00010000L
1842 #define MCI_VD_SPIN_DOWN 0x00020000L
1844 #define MCI_VD_GETDEVCAPS_CAN_REVERSE 0x00004002L
1845 #define MCI_VD_GETDEVCAPS_FAST_RATE 0x00004003L
1846 #define MCI_VD_GETDEVCAPS_SLOW_RATE 0x00004004L
1847 #define MCI_VD_GETDEVCAPS_NORMAL_RATE 0x00004005L
1849 #define MCI_VD_STEP_FRAMES 0x00010000L
1850 #define MCI_VD_STEP_REVERSE 0x00020000L
1852 #define MCI_VD_ESCAPE_STRING 0x00000100L
1855 DWORD_PTR dwCallback
;
1859 } MCI_VD_PLAY_PARMS
, *LPMCI_VD_PLAY_PARMS
;
1862 DWORD_PTR dwCallback
;
1864 } MCI_VD_STEP_PARMS
, *LPMCI_VD_STEP_PARMS
;
1867 DWORD_PTR dwCallback
;
1868 LPCSTR lpstrCommand
;
1869 } MCI_VD_ESCAPE_PARMSA
, *LPMCI_VD_ESCAPE_PARMSA
;
1872 DWORD_PTR dwCallback
;
1873 LPCWSTR lpstrCommand
;
1874 } MCI_VD_ESCAPE_PARMSW
, *LPMCI_VD_ESCAPE_PARMSW
;
1876 DECL_WINELIB_TYPE_AW(MCI_VD_ESCAPE_PARMS
)
1877 DECL_WINELIB_TYPE_AW(LPMCI_VD_ESCAPE_PARMS
)
1879 #define MCI_WAVE_OPEN_BUFFER 0x00010000L
1881 #define MCI_WAVE_SET_FORMATTAG 0x00010000L
1882 #define MCI_WAVE_SET_CHANNELS 0x00020000L
1883 #define MCI_WAVE_SET_SAMPLESPERSEC 0x00040000L
1884 #define MCI_WAVE_SET_AVGBYTESPERSEC 0x00080000L
1885 #define MCI_WAVE_SET_BLOCKALIGN 0x00100000L
1886 #define MCI_WAVE_SET_BITSPERSAMPLE 0x00200000L
1888 #define MCI_WAVE_INPUT 0x00400000L
1889 #define MCI_WAVE_OUTPUT 0x00800000L
1891 #define MCI_WAVE_STATUS_FORMATTAG 0x00004001L
1892 #define MCI_WAVE_STATUS_CHANNELS 0x00004002L
1893 #define MCI_WAVE_STATUS_SAMPLESPERSEC 0x00004003L
1894 #define MCI_WAVE_STATUS_AVGBYTESPERSEC 0x00004004L
1895 #define MCI_WAVE_STATUS_BLOCKALIGN 0x00004005L
1896 #define MCI_WAVE_STATUS_BITSPERSAMPLE 0x00004006L
1897 #define MCI_WAVE_STATUS_LEVEL 0x00004007L
1899 #define MCI_WAVE_SET_ANYINPUT 0x04000000L
1900 #define MCI_WAVE_SET_ANYOUTPUT 0x08000000L
1902 #define MCI_WAVE_GETDEVCAPS_INPUTS 0x00004001L
1903 #define MCI_WAVE_GETDEVCAPS_OUTPUTS 0x00004002L
1906 DWORD_PTR dwCallback
;
1907 MCIDEVICEID wDeviceID
;
1908 LPCSTR lpstrDeviceType
;
1909 LPCSTR lpstrElementName
;
1911 DWORD dwBufferSeconds
;
1912 } MCI_WAVE_OPEN_PARMSA
, *LPMCI_WAVE_OPEN_PARMSA
;
1915 DWORD_PTR dwCallback
;
1916 MCIDEVICEID wDeviceID
;
1917 LPCWSTR lpstrDeviceType
;
1918 LPCWSTR lpstrElementName
;
1920 DWORD dwBufferSeconds
;
1921 } MCI_WAVE_OPEN_PARMSW
, *LPMCI_WAVE_OPEN_PARMSW
;
1923 DECL_WINELIB_TYPE_AW(MCI_WAVE_OPEN_PARMS
)
1924 DECL_WINELIB_TYPE_AW(LPMCI_WAVE_OPEN_PARMS
)
1927 DWORD_PTR dwCallback
;
1930 } MCI_WAVE_DELETE_PARMS
, *LPMCI_WAVE_DELETE_PARMS
;
1933 DWORD_PTR dwCallback
;
1940 DWORD nSamplesPerSec
;
1941 DWORD nAvgBytesPerSec
;
1943 UINT wBitsPerSample
;
1944 } MCI_WAVE_SET_PARMS
, * LPMCI_WAVE_SET_PARMS
;
1947 #define MCI_SEQ_DIV_PPQN (0 + MCI_SEQ_OFFSET)
1948 #define MCI_SEQ_DIV_SMPTE_24 (1 + MCI_SEQ_OFFSET)
1949 #define MCI_SEQ_DIV_SMPTE_25 (2 + MCI_SEQ_OFFSET)
1950 #define MCI_SEQ_DIV_SMPTE_30DROP (3 + MCI_SEQ_OFFSET)
1951 #define MCI_SEQ_DIV_SMPTE_30 (4 + MCI_SEQ_OFFSET)
1953 #define MCI_SEQ_FORMAT_SONGPTR 0x4001
1954 #define MCI_SEQ_FILE 0x4002
1955 #define MCI_SEQ_MIDI 0x4003
1956 #define MCI_SEQ_SMPTE 0x4004
1957 #define MCI_SEQ_NONE 65533
1959 #define MCI_SEQ_STATUS_TEMPO 0x00004002L
1960 #define MCI_SEQ_STATUS_PORT 0x00004003L
1961 #define MCI_SEQ_STATUS_SLAVE 0x00004007L
1962 #define MCI_SEQ_STATUS_MASTER 0x00004008L
1963 #define MCI_SEQ_STATUS_OFFSET 0x00004009L
1964 #define MCI_SEQ_STATUS_DIVTYPE 0x0000400AL
1966 #define MCI_SEQ_SET_TEMPO 0x00010000L
1967 #define MCI_SEQ_SET_PORT 0x00020000L
1968 #define MCI_SEQ_SET_SLAVE 0x00040000L
1969 #define MCI_SEQ_SET_MASTER 0x00080000L
1970 #define MCI_SEQ_SET_OFFSET 0x01000000L
1973 DWORD_PTR dwCallback
;
1981 } MCI_SEQ_SET_PARMS
, *LPMCI_SEQ_SET_PARMS
;
1983 #define MCI_ANIM_OPEN_WS 0x00010000L
1984 #define MCI_ANIM_OPEN_PARENT 0x00020000L
1985 #define MCI_ANIM_OPEN_NOSTATIC 0x00040000L
1987 #define MCI_ANIM_PLAY_SPEED 0x00010000L
1988 #define MCI_ANIM_PLAY_REVERSE 0x00020000L
1989 #define MCI_ANIM_PLAY_FAST 0x00040000L
1990 #define MCI_ANIM_PLAY_SLOW 0x00080000L
1991 #define MCI_ANIM_PLAY_SCAN 0x00100000L
1993 #define MCI_ANIM_STEP_REVERSE 0x00010000L
1994 #define MCI_ANIM_STEP_FRAMES 0x00020000L
1996 #define MCI_ANIM_STATUS_SPEED 0x00004001L
1997 #define MCI_ANIM_STATUS_FORWARD 0x00004002L
1998 #define MCI_ANIM_STATUS_HWND 0x00004003L
1999 #define MCI_ANIM_STATUS_HPAL 0x00004004L
2000 #define MCI_ANIM_STATUS_STRETCH 0x00004005L
2002 #define MCI_ANIM_INFO_TEXT 0x00010000L
2004 #define MCI_ANIM_GETDEVCAPS_CAN_REVERSE 0x00004001L
2005 #define MCI_ANIM_GETDEVCAPS_FAST_RATE 0x00004002L
2006 #define MCI_ANIM_GETDEVCAPS_SLOW_RATE 0x00004003L
2007 #define MCI_ANIM_GETDEVCAPS_NORMAL_RATE 0x00004004L
2008 #define MCI_ANIM_GETDEVCAPS_PALETTES 0x00004006L
2009 #define MCI_ANIM_GETDEVCAPS_CAN_STRETCH 0x00004007L
2010 #define MCI_ANIM_GETDEVCAPS_MAX_WINDOWS 0x00004008L
2012 #define MCI_ANIM_REALIZE_NORM 0x00010000L
2013 #define MCI_ANIM_REALIZE_BKGD 0x00020000L
2015 #define MCI_ANIM_WINDOW_HWND 0x00010000L
2016 #define MCI_ANIM_WINDOW_STATE 0x00040000L
2017 #define MCI_ANIM_WINDOW_TEXT 0x00080000L
2018 #define MCI_ANIM_WINDOW_ENABLE_STRETCH 0x00100000L
2019 #define MCI_ANIM_WINDOW_DISABLE_STRETCH 0x00200000L
2021 #define MCI_ANIM_WINDOW_DEFAULT 0x00000000L
2023 #define MCI_ANIM_RECT 0x00010000L
2024 #define MCI_ANIM_PUT_SOURCE 0x00020000L
2025 #define MCI_ANIM_PUT_DESTINATION 0x00040000L
2027 #define MCI_ANIM_WHERE_SOURCE 0x00020000L
2028 #define MCI_ANIM_WHERE_DESTINATION 0x00040000L
2030 #define MCI_ANIM_UPDATE_HDC 0x00020000L
2033 DWORD_PTR dwCallback
;
2034 MCIDEVICEID wDeviceID
;
2035 LPCSTR lpstrDeviceType
;
2036 LPCSTR lpstrElementName
;
2040 } MCI_ANIM_OPEN_PARMSA
, *LPMCI_ANIM_OPEN_PARMSA
;
2043 DWORD_PTR dwCallback
;
2044 MCIDEVICEID wDeviceID
;
2045 LPCWSTR lpstrDeviceType
;
2046 LPCWSTR lpstrElementName
;
2050 } MCI_ANIM_OPEN_PARMSW
, *LPMCI_ANIM_OPEN_PARMSW
;
2052 DECL_WINELIB_TYPE_AW(MCI_ANIM_OPEN_PARMS
)
2053 DECL_WINELIB_TYPE_AW(LPMCI_ANIM_OPEN_PARMS
)
2056 DWORD_PTR dwCallback
;
2060 } MCI_ANIM_PLAY_PARMS
, *LPMCI_ANIM_PLAY_PARMS
;
2063 DWORD_PTR dwCallback
;
2065 } MCI_ANIM_STEP_PARMS
, *LPMCI_ANIM_STEP_PARMS
;
2068 DWORD_PTR dwCallback
;
2072 } MCI_ANIM_WINDOW_PARMSA
, *LPMCI_ANIM_WINDOW_PARMSA
;
2075 DWORD_PTR dwCallback
;
2079 } MCI_ANIM_WINDOW_PARMSW
, *LPMCI_ANIM_WINDOW_PARMSW
;
2081 DECL_WINELIB_TYPE_AW(MCI_ANIM_WINDOW_PARMS
)
2082 DECL_WINELIB_TYPE_AW(LPMCI_ANIM_WINDOW_PARMS
)
2085 DWORD_PTR dwCallback
;
2086 #ifdef MCI_USE_OFFEXT
2089 #else /* ifdef MCI_USE_OFFEXT */
2091 #endif /* ifdef MCI_USE_OFFEXT */
2092 } MCI_ANIM_RECT_PARMS
, *LPMCI_ANIM_RECT_PARMS
;
2096 DWORD_PTR dwCallback
;
2099 } MCI_ANIM_UPDATE_PARMS
, *LPMCI_ANIM_UPDATE_PARMS
;
2102 #define MCI_OVLY_OPEN_WS 0x00010000L
2103 #define MCI_OVLY_OPEN_PARENT 0x00020000L
2105 #define MCI_OVLY_STATUS_HWND 0x00004001L
2106 #define MCI_OVLY_STATUS_STRETCH 0x00004002L
2108 #define MCI_OVLY_INFO_TEXT 0x00010000L
2110 #define MCI_OVLY_GETDEVCAPS_CAN_STRETCH 0x00004001L
2111 #define MCI_OVLY_GETDEVCAPS_CAN_FREEZE 0x00004002L
2112 #define MCI_OVLY_GETDEVCAPS_MAX_WINDOWS 0x00004003L
2114 #define MCI_OVLY_WINDOW_HWND 0x00010000L
2115 #define MCI_OVLY_WINDOW_STATE 0x00040000L
2116 #define MCI_OVLY_WINDOW_TEXT 0x00080000L
2117 #define MCI_OVLY_WINDOW_ENABLE_STRETCH 0x00100000L
2118 #define MCI_OVLY_WINDOW_DISABLE_STRETCH 0x00200000L
2120 #define MCI_OVLY_WINDOW_DEFAULT 0x00000000L
2122 #define MCI_OVLY_RECT 0x00010000L
2123 #define MCI_OVLY_PUT_SOURCE 0x00020000L
2124 #define MCI_OVLY_PUT_DESTINATION 0x00040000L
2125 #define MCI_OVLY_PUT_FRAME 0x00080000L
2126 #define MCI_OVLY_PUT_VIDEO 0x00100000L
2128 #define MCI_OVLY_WHERE_SOURCE 0x00020000L
2129 #define MCI_OVLY_WHERE_DESTINATION 0x00040000L
2130 #define MCI_OVLY_WHERE_FRAME 0x00080000L
2131 #define MCI_OVLY_WHERE_VIDEO 0x00100000L
2134 DWORD_PTR dwCallback
;
2135 MCIDEVICEID wDeviceID
;
2136 LPCSTR lpstrDeviceType
;
2137 LPCSTR lpstrElementName
;
2141 } MCI_OVLY_OPEN_PARMSA
, *LPMCI_OVLY_OPEN_PARMSA
;
2144 DWORD_PTR dwCallback
;
2145 MCIDEVICEID wDeviceID
;
2146 LPCWSTR lpstrDeviceType
;
2147 LPCWSTR lpstrElementName
;
2151 } MCI_OVLY_OPEN_PARMSW
, *LPMCI_OVLY_OPEN_PARMSW
;
2153 DECL_WINELIB_TYPE_AW(MCI_OVLY_OPEN_PARMS
)
2154 DECL_WINELIB_TYPE_AW(LPMCI_OVLY_OPEN_PARMS
)
2157 DWORD_PTR dwCallback
;
2161 } MCI_OVLY_WINDOW_PARMSA
, *LPMCI_OVLY_WINDOW_PARMSA
;
2164 DWORD_PTR dwCallback
;
2168 } MCI_OVLY_WINDOW_PARMSW
, *LPMCI_OVLY_WINDOW_PARMSW
;
2170 DECL_WINELIB_TYPE_AW(MCI_OVLY_WINDOW_PARMS
)
2171 DECL_WINELIB_TYPE_AW(LPMCI_OVLY_WINDOW_PARMS
)
2174 DWORD_PTR dwCallback
;
2175 #ifdef MCI_USE_OFFEXT
2178 #else /* ifdef MCI_USE_OFFEXT */
2180 #endif /* ifdef MCI_USE_OFFEXT */
2181 } MCI_OVLY_RECT_PARMS
, *LPMCI_OVLY_RECT_PARMS
;
2185 DWORD_PTR dwCallback
;
2188 } MCI_OVLY_SAVE_PARMSA
, *LPMCI_OVLY_SAVE_PARMSA
;
2191 DWORD_PTR dwCallback
;
2194 } MCI_OVLY_SAVE_PARMSW
, *LPMCI_OVLY_SAVE_PARMSW
;
2196 DECL_WINELIB_TYPE_AW(MCI_OVLY_SAVE_PARMS
)
2197 DECL_WINELIB_TYPE_AW(LPMCI_OVLY_SAVE_PARMS
)
2200 DWORD_PTR dwCallback
;
2203 } MCI_OVLY_LOAD_PARMSA
, *LPMCI_OVLY_LOAD_PARMSA
;
2206 DWORD_PTR dwCallback
;
2209 } MCI_OVLY_LOAD_PARMSW
, *LPMCI_OVLY_LOAD_PARMSW
;
2211 DECL_WINELIB_TYPE_AW(MCI_OVLY_LOAD_PARMS
)
2212 DECL_WINELIB_TYPE_AW(LPMCI_OVLY_LOAD_PARMS
)
2214 #include <poppack.h>
2220 #endif /* __WINE_MMSYSTEM_H */