Mercurial > vim
view src/proto/sound.pro @ 34142:8493cc47ae5b v9.1.0032
patch 9.1.0032: MS-Windows installer misses keymaps
Commit: https://github.com/vim/vim/commit/1a9aba8ad49ef77e69f429093d44888e7eafde7c
Author: Ken Takata <kentkt@csc.jp>
Date: Tue Jan 16 17:14:29 2024 +0100
patch 9.1.0032: MS-Windows installer misses keymaps
Problem: MS-Windows installer misses keymaps
(Maxim Kim)
Solution: Include keymaps in the installer archive
(Ken Takata)
fixes: vim/vim-win32-installer#331
closes: #13871
Signed-off-by: Ken Takata <kentkt@csc.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 16 Jan 2024 17:30:05 +0100 |
parents | 71137f73c94d |
children |
line wrap: on
line source
/* 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 : */