annotate src/proto/os_macosx.pro @ 31065:50405a481037 v9.0.0867

patch 9.0.0867: wildmenu redrawing code is spread out Commit: https://github.com/vim/vim/commit/d6e91385f0f7256aec8f70373c9e3399770d22e5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 12 17:44:13 2022 +0000 patch 9.0.0867: wildmenu redrawing code is spread out Problem: Wildmenu redrawing code is spread out. Solution: Refactor to move code together. (closes https://github.com/vim/vim/issues/11528)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Nov 2022 18:45:04 +0100
parents 71137f73c94d
children ca4e81de477a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30719
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 /* os_macosx.m */
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 void process_cfrunloop();
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 bool sound_mch_play(const char_u* event, long sound_id, soundcb_T *callback, bool playfile);
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 void sound_mch_stop(long sound_id);
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 void sound_mch_clear();
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 void sound_mch_free();
71137f73c94d patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 /* vim: set ft=c : */