Rename CSR_CONNECTION_INFO and CONSOLE_CONNECTION_INFO to the same way as BASESRV_API...
[reactos.git] / reactos / base / applications / mplay32 / mplay32.h
1 #include <stdarg.h>
2 #include <windef.h>
3 #include <winbase.h>
4 #include <winuser.h>
5 #include <wingdi.h>
6 #include <commdlg.h>
7 #include <shellapi.h>
8 #include <mmsystem.h>
9 #include <commctrl.h>
10 #include <tchar.h>
11
12 #include "resource.h"
13
14 #define IDT_PLAYTIMER 1000
15
16 #define UNSUPPORTED_FILE 0
17 #define WAVE_FILE 1
18 #define MIDI_FILE 2
19 #define AUDIOCD_FILE 3
20 #define AVI_FILE 4
21
22 typedef struct
23 {
24 TCHAR szExt[MAX_PATH];
25 UINT uType;
26 } TYPEBYEXT;