mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
20 lines
323 B
C
20 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;
|