summaryrefslogtreecommitdiff
path: root/src/proto/os_macosx.pro
diff options
context:
space:
mode:
authorYee Cheng Chin <ychin.git@gmail.com>2022-10-08 13:50:05 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-08 13:50:05 +0100
commit4314e4f7da4db5d85f63cdf43b73be3689502c93 (patch)
tree37d2f5ae97f68da5ca3e0edc8ac6d6aa6b06d8e3 /src/proto/os_macosx.pro
parent5a049846e4c54d70094c3f29ffbd340c75e9c50e (diff)
downloadvim-git-4314e4f7da4db5d85f63cdf43b73be3689502c93.tar.gz
patch 9.0.0694: no native sound support on Mac OSv9.0.0694
Problem: No native sound support on Mac OS. Solution: Add sound support for Mac OS. (Yee Cheng Chin, closes #11274)
Diffstat (limited to 'src/proto/os_macosx.pro')
-rw-r--r--src/proto/os_macosx.pro7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/proto/os_macosx.pro b/src/proto/os_macosx.pro
new file mode 100644
index 000000000..5b96b75a8
--- /dev/null
+++ b/src/proto/os_macosx.pro
@@ -0,0 +1,7 @@
+/* os_macosx.m */
+void process_cfrunloop();
+bool sound_mch_play(const char_u* event, long sound_id, soundcb_T *callback, bool playfile);
+void sound_mch_stop(long sound_id);
+void sound_mch_clear();
+void sound_mch_free();
+/* vim: set ft=c : */