/******************************* * Multiple Include Protection ******************************/ #ifndef _SNDBUF_CONFIG_H_ #define _SNDBUF_CONFIG_H_ /******************************* * Defines ******************************/ //-- Sound Hardware (low-level) -- #define BUF_DEVICE "/dev/dsp" #define BUF_FORMAT AFMT_S16_LE #define BUF_STEREO 1 #define BUF_SPEED 44100 #define BUF_CHAN 2 #define BUF_AXIS 0 // The value of the value of sin(0) in the buffer. #define BUF_TYPE short #define BUF_MAX MAXSHORT #define BUF_MIN MINSHORT /******************************* * Multiple Include Protection ******************************/ #endif