summaryrefslogtreecommitdiff
path: root/dumb/dumb-kode54/winamp/gui.h
blob: 7924b247ea91f4bee7c1d7b1d788cdb7bc78c753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#define CHANNEL_MONO   1
#define CHANNEL_STEREO 2

#define RESAMPLING_ALIASING  0
#define RESAMPLING_LINEAR    1
#define RESAMPLING_LINEAR2   2
#define RESAMPLING_QUADRATIC 3
#define RESAMPLING_CUBIC     4

#define PRIORITY_NORMAL  0
#define PRIORITY_HIGH    1
#define PRIORITY_HIGHEST 2


extern void config(HWND hwndParent);
extern void about(HWND hwndParent);

extern void config_init(void);
extern void config_quit(void);

extern int config_bits_per_sample;
extern int config_frequency;
extern int config_stereo;
extern int config_resampling;
extern int config_buffer_size;
extern int config_thread_priority;