espeakup/espeak_sound.c
2009-06-23 11:02:09 -05:00

26 lines
386 B
C

#include "espeakup.h"
void select_audio_mode(void)
{
audio_mode = AUDIO_OUTPUT_PLAYBACK;
}
int init_audio(unsigned int rate)
{
return 0;
}
/*
* lock_audio_mutex and unlock_audio_mutex are no-ops if we use native
* sound support. The stopped variable is never read; no need to protect it.
*/
void lock_audio_mutex(void)
{
return;
}
void unlock_audio_mutex(void)
{
return;
}