summaryrefslogtreecommitdiffstats
path: root/src/proto/sound.pro
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:09:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:09:20 +0000
commit029f72b1a93430b24b88eb3a72c6114d9f149737 (patch)
tree765d5c2041967f9c6fef195fe343d9234a030e90 /src/proto/sound.pro
parentInitial commit. (diff)
downloadvim-029f72b1a93430b24b88eb3a72c6114d9f149737.tar.xz
vim-029f72b1a93430b24b88eb3a72c6114d9f149737.zip
Adding upstream version 2:9.1.0016.upstream/2%9.1.0016
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 : */