]> git.proxmox.com Git - qemu.git/commitdiff
audio: remove last remnants of _t
authormalc <av1474@comtv.ru>
Wed, 14 Oct 2009 22:40:17 +0000 (02:40 +0400)
committermalc <av1474@comtv.ru>
Wed, 14 Oct 2009 22:40:17 +0000 (02:40 +0400)
Signed-off-by: malc <av1474@comtv.ru>
audio/audio.h
audio/audio_int.h
audio/audio_template.h

index f234ad0f54d3ef9d4c57e0010354b835839185b1..454ade260e583d1cec09d89a6e3320ab4392ad07 100644 (file)
@@ -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
     );
 
index 317c9fc1151f7195165262de3aced39e5d278c1f..06e313f836767bbcae57f685b05ffc44142a0b6d 100644 (file)
@@ -50,7 +50,7 @@ struct audio_option {
 
 struct audio_callback {
     void *opaque;
-    audio_callback_fn_t fn;
+    audio_callback_fn fn;
 };
 
 struct audio_pcm_info {
index 70c4a8818b03a7030e0b203dd0375815b2c978e3..14c648c05fe9b372f0f56bb5d1361949b772bf74 100644 (file)
@@ -402,7 +402,7 @@ SW *glue (AUD_open_, TYPE) (
     SW *sw,
     const char *name,
     void *callback_opaque ,
-    audio_callback_fn_t callback_fn,
+    audio_callback_fn callback_fn,
     struct audsettings *as
     )
 {