d5d093bd10
Obtained from: https://web.archive.org/web/20090620082249/http://worldserver.oleane.com/rsn/ascd-en.html
16 lines
292 B
C
16 lines
292 B
C
#if defined (__FreeBSD__)
|
|
# include <machine/soundcard.h>
|
|
#else
|
|
# include <sys/mount.h>
|
|
# include <linux/soundcard.h>
|
|
#endif
|
|
|
|
#define DEFAULTMIXERDEVICE "/dev/mixer"
|
|
|
|
char mixer_device[128]=DEFAULTMIXERDEVICE;
|
|
int mixer_ok = 1;
|
|
int mixer_control;
|
|
int mixer_vol;
|
|
int mixer_but;
|
|
int mixer_old;
|