mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
28 lines
511 B
C
28 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;
|