7475c9bfc84061c5ab78a1d773e611ce78920c96
[reactos.git] / reactos / include / reactos / wine / mmsystem.h
1 /*
2 * MMSYSTEM - Multimedia Wine Extension ... :-)
3 *
4 * Copyright (C) the Wine project
5 *
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.
10 *
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.
15 *
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
19 */
20
21 #ifndef __WINE_MMSYSTEM_H
22 #define __WINE_MMSYSTEM_H
23
24 #include_next <mmsystem.h>
25
26 #define DRV_SUCCESS 0x0001
27 #define DRV_FAILURE 0x0000
28 #define DRV_EXITAPPLICATION 0x000C
29
30 #define MAXWAVEDRIVERS 10
31 #define MAXMIDIDRIVERS 10
32 #define MAXAUXDRIVERS 10
33 #define MAXMCIDRIVERS 32
34 #define MAXMIXERDRIVERS 10
35
36 #define MCI_OPEN_DRIVER 0x0801
37 #define MCI_CLOSE_DRIVER 0x0802
38 #define MCI_SOUND 0x0812
39
40 #define MCI_SOUND_NAME 0x00000100L
41
42 typedef LPCSTR HPCSTR; /* a huge version of LPCSTR */
43
44 typedef struct tagMCI_SOUND_PARMSA {
45 DWORD_PTR dwCallback;
46 LPCSTR lpstrSoundName;
47 } MCI_SOUND_PARMSA, *LPMCI_SOUND_PARMSA;
48
49 typedef struct tagMCI_SOUND_PARMSW {
50 DWORD_PTR dwCallback;
51 LPCWSTR lpstrSoundName;
52 } MCI_SOUND_PARMSW, *LPMCI_SOUND_PARMSW;
53
54 #ifdef UNICODE
55 typedef MCI_SOUND_PARMSW MCI_SOUND_PARMS;
56 #else
57 typedef MCI_SOUND_PARMSA MCI_SOUND_PARMS;
58 #endif
59
60 typedef struct midievent_tag *LPMIDIEVENT;
61
62 DWORD WINAPI GetDriverFlags(HDRVR hDriver);
63
64 #endif /* __WINE_WINNT_H */