summaryrefslogtreecommitdiff
path: root/src/proto.h
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.h
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.h')
-rw-r--r--src/proto.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h
index 9638eaaf6..7ddf1037b 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -327,6 +327,9 @@ extern char_u *vimpty_getenv(const char_u *string); // in misc2.c
# ifdef MACOS_CONVERT
# include "os_mac_conv.pro"
# endif
+# ifdef MACOS_X
+# include "os_macosx.pro"
+# endif
# if defined(MACOS_X_DARWIN) && defined(FEAT_CLIPBOARD) && !defined(FEAT_GUI)
// functions in os_macosx.m
void clip_mch_lose_selection(Clipboard_T *cbd);