mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
20 lines
228 B
C
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;
|
|
}
|