Sync with trunk (r49303)
[reactos.git] / base / applications / mplay32 / mplay32.h
1 #include <windows.h>
2 #include <commctrl.h>
3 #include <tchar.h>
4
5 #include "resource.h"
6
7 #define IDT_PLAYTIMER 1000
8
9 #define UNSUPPORTED_FILE 0
10 #define WAVE_FILE 1
11 #define MIDI_FILE 2
12 #define AUDIOCD_FILE 3
13 #define AVI_FILE 4
14
15 typedef struct
16 {
17 TCHAR szExt[MAX_PATH];
18 UINT uType;
19 } TYPEBYEXT;