espeakup/espeak_sound.c
William Hubbs ac9e12414b made stop_requested a global variable
The two variables, stop_requested and runner_must_stop were performing
the same function, so I am using one variable, stop_requested for this
function.
2009-07-01 20:16:29 -05:00

16 lines
179 B
C

#include "espeakup.h"
void select_audio_mode(void)
{
audio_mode = AUDIO_OUTPUT_PLAYBACK;
}
int init_audio(unsigned int rate)
{
return 0;
}
void stop_audio(void)
{
return;
}