espeakup/portaudio.c
2010-05-04 22:55:13 -05:00

20 lines
228 B
C

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#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;
}