File: audio_none.c

package info (click to toggle)
esound 0.2.35-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,828 kB
  • ctags: 808
  • sloc: ansic: 10,220; sh: 8,620; makefile: 237; csh: 86
file content (20 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef DRIVER_NONE

#error No known audio device.  Double check the autoconfigure output in 
#error config.log.  Theoretically, this should support the following
#error audio systems: 
#error      Linux (oss), aix, hpux, irix, and solaris
#error Currently, the following drivers are untested and probably need work:
#error      aix, hpux, irix, and solaris
#error Additional drivers appreciated. See README for info on how to help.

#else

#define ARCH_esd_audio_open
int esd_audio_open()
{
    printf("WARNING: sound not available");
    return -1;
}

#endif