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