Capture window station name passed from usermode
[reactos.git] / reactos / include / 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 MCI_OPEN_DRIVER 0x0801
31 #define MCI_CLOSE_DRIVER 0x0802
32 #define MCI_SOUND 0x0812
33
34 #define MCI_SOUND_NAME 0x00000100L
35
36 typedef LPCSTR HPCSTR; /* a huge version of LPCSTR */
37
38 typedef struct tagMCI_SOUND_PARMSA {
39 DWORD_PTR dwCallback;
40 LPCSTR lpstrSoundName;
41 } MCI_SOUND_PARMSA, *LPMCI_SOUND_PARMSA;
42
43 typedef struct tagMCI_SOUND_PARMSW {
44 DWORD_PTR dwCallback;
45 LPCWSTR lpstrSoundName;
46 } MCI_SOUND_PARMSW, *LPMCI_SOUND_PARMSW;
47
48 #ifdef UNICODE
49 typedef MCI_SOUND_PARMSW MCI_SOUND_PARMS;
50 #else
51 typedef MCI_SOUND_PARMSA MCI_SOUND_PARMS;
52 #endif
53
54 typedef struct midievent_tag *LPMIDIEVENT;
55
56 DWORD WINAPI GetDriverFlags(HDRVR hDriver);
57
58 #endif /* __WINE_WINNT_H */