1
Fork 0
sm64/src/pc/audio/audio_pulse.h
2020-07-17 20:05:33 +02:00

13 lines
223 B
C

#ifndef AUDIO_PULSE_H
#define AUDIO_PULSE_H
#include "../compat.h"
#if defined(__linux__) || defined(__BSD__)
extern struct AudioAPI audio_pulse;
#define HAVE_PULSE_AUDIO 1
#else
#define HAVE_PULSE_AUDIO 0
#endif
#endif