diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
commit | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (patch) | |
tree | 221cbe3c40e043163c06f61c52a7ba2eb41e12ce /src/proto/menu.pro | |
parent | b4210b3bc14e2918f153a7307530fbe6eba659e1 (diff) | |
download | vim-git-071d4279d6ab81b7187b48f3a0fc61e587b6db6c.tar.gz |
updated for version 7.0001v7.0001
Diffstat (limited to 'src/proto/menu.pro')
-rw-r--r-- | src/proto/menu.pro | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/proto/menu.pro b/src/proto/menu.pro new file mode 100644 index 000000000..506a963b2 --- /dev/null +++ b/src/proto/menu.pro @@ -0,0 +1,21 @@ +/* menu.c */ +void ex_menu __ARGS((exarg_T *eap)); +char_u *set_context_in_menu_cmd __ARGS((expand_T *xp, char_u *cmd, char_u *arg, int forceit)); +char_u *get_menu_name __ARGS((expand_T *xp, int idx)); +char_u *get_menu_names __ARGS((expand_T *xp, int idx)); +char_u *menu_name_skip __ARGS((char_u *name)); +int get_menu_index __ARGS((vimmenu_T *menu, int state)); +int menu_is_menubar __ARGS((char_u *name)); +int menu_is_popup __ARGS((char_u *name)); +int menu_is_child_of_popup __ARGS((vimmenu_T *menu)); +int menu_is_toolbar __ARGS((char_u *name)); +int menu_is_separator __ARGS((char_u *name)); +void gui_create_initial_menus __ARGS((vimmenu_T *menu)); +void gui_update_menus __ARGS((int modes)); +int gui_is_menu_shortcut __ARGS((int key)); +void gui_show_popupmenu __ARGS((void)); +void gui_mch_toggle_tearoffs __ARGS((int enable)); +void ex_emenu __ARGS((exarg_T *eap)); +vimmenu_T *gui_find_menu __ARGS((char_u *path_name)); +void ex_menutranslate __ARGS((exarg_T *eap)); +/* vim: set ft=c : */ |