mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
19 lines
323 B
C
19 lines
323 B
C
#include <windows.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;
|