summaryrefslogtreecommitdiffstats
path: root/src/proto/sound.pro
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 08:50:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 08:50:31 +0000
commitaed8ce9da277f5ecffe968b324f242c41c3b752a (patch)
treed2e538394cb7a8a7c42a4aac6ccf1a8e3256999b /src/proto/sound.pro
parentInitial commit. (diff)
downloadvim-aed8ce9da277f5ecffe968b324f242c41c3b752a.tar.xz
vim-aed8ce9da277f5ecffe968b324f242c41c3b752a.zip
Adding upstream version 2:9.0.1378.upstream/2%9.0.1378upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/proto/sound.pro')
-rw-r--r--src/proto/sound.pro14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/proto/sound.pro b/src/proto/sound.pro
new file mode 100644
index 0000000..c6d0541
--- /dev/null
+++ b/src/proto/sound.pro
@@ -0,0 +1,14 @@
+/* sound.c */
+typedef struct soundcb_S soundcb_T;
+
+int has_any_sound_callback(void);
+int has_sound_callback_in_queue(void);
+void call_sound_callback(soundcb_T *soundcb, long sound_id, int result);
+void delete_sound_callback(soundcb_T *soundcb);
+void invoke_sound_callback(void);
+void f_sound_playevent(typval_T *argvars, typval_T *rettv);
+void f_sound_playfile(typval_T *argvars, typval_T *rettv);
+void f_sound_stop(typval_T *argvars, typval_T *rettv);
+void f_sound_clear(typval_T *argvars, typval_T *rettv);
+void sound_free(void);
+/* vim: set ft=c : */