reactos/base/applications/mplay32/mplay32.h
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

29 lines
511 B
C

#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#include <wingdi.h>
#include <winreg.h>
#include <commdlg.h>
#include <shellapi.h>
#include <mmsystem.h>
#include <digitalv.h>
#include <commctrl.h>
#include <tchar.h>
#include "resource.h"
#define IDT_PLAYTIMER 1000
#define UNSUPPORTED_FILE 0
#define WAVE_FILE 1
#define MIDI_FILE 2
#define AUDIOCD_FILE 3
#define AVI_FILE 4
typedef struct
{
TCHAR szExt[MAX_PATH];
UINT uType;
} TYPEBYEXT;