diff options
author | malc <av1474@comtv.ru> | 2009-10-15 02:40:17 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-10-15 02:40:17 +0400 |
commit | cb4f03e874e112d3df79b3cbe1903d28985371a7 (patch) | |
tree | afd175ffee5e7b3ceeda7641cc2743cbe6f325f9 /audio/audio.h | |
parent | bc578fe0075e1de6bd5316adb828685e0d687d5f (diff) |
audio: remove last remnants of _t
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'audio/audio.h')
-rw-r--r-- | audio/audio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/audio.h b/audio/audio.h index f234ad0f54..454ade260e 100644 --- a/audio/audio.h +++ b/audio/audio.h @@ -27,7 +27,7 @@ #include "config-host.h" #include "qemu-queue.h" -typedef void (*audio_callback_fn_t) (void *opaque, int avail); +typedef void (*audio_callback_fn) (void *opaque, int avail); typedef enum { AUD_FMT_U8, @@ -108,7 +108,7 @@ SWVoiceOut *AUD_open_out ( SWVoiceOut *sw, const char *name, void *callback_opaque, - audio_callback_fn_t callback_fn, + audio_callback_fn callback_fn, struct audsettings *settings ); @@ -129,7 +129,7 @@ SWVoiceIn *AUD_open_in ( SWVoiceIn *sw, const char *name, void *callback_opaque, - audio_callback_fn_t callback_fn, + audio_callback_fn callback_fn, struct audsettings *settings ); |