summaryrefslogtreecommitdiffstats
path: root/libao2/audio_out_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'libao2/audio_out_internal.h')
-rw-r--r--libao2/audio_out_internal.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libao2/audio_out_internal.h b/libao2/audio_out_internal.h
index 5899270af2..5867d91d6c 100644
--- a/libao2/audio_out_internal.h
+++ b/libao2/audio_out_internal.h
@@ -8,6 +8,8 @@ static void reset();
static int get_space();
static int play(void* data,int len,int flags);
static int get_delay();
+static void audio_pause();
+static void audio_resume();
#define LIBAO_EXTERN(x) ao_functions_t audio_out_##x =\
{\
@@ -18,6 +20,8 @@ static int get_delay();
reset,\
get_space,\
play,\
- get_delay\
+ get_delay,\
+ audio_pause,\
+ audio_resume\
};