comparison src/menu.h @ 109099:e16f43875a48

Remove P_ and __P macros. * lwlib/lwlib-Xaw.h: Remove P_ and __P macros. * lwlib/lwlib-Xlw.h: * lwlib/lwlib-Xm.h: * lwlib/lwlib-int.h: * lwlib/lwlib-utils.h: * lwlib/lwlib.h: Likewise. * src/buffer.h: Remove P_ and __P macros. * src/category.h: * src/ccl.h: * src/character.h: * src/charset.h: * src/cm.h: * src/coding.h: * src/composite.h: * src/dispextern.h: * src/disptab.h: * src/font.h: * src/fontset.h: * src/frame.h: * src/gtkutil.h: * src/indent.h: * src/intervals.h: * src/keyboard.h: * src/keymap.h: * src/lisp.h: * src/macros.h: * src/md5.h: * src/menu.h: * src/msdos.h: * src/nsterm.h: * src/puresize.h: * src/region-cache.h: * src/syntax.h: * src/syssignal.h: * src/systime.h: * src/termhooks.h: * src/w32term.h: * src/widget.h: * src/window.h: * src/xgselect.h: * src/xsettings.h: * src/xterm.h: Likewise.
author Jan D <jan.h.d@swipnet.se>
date Fri, 02 Jul 2010 11:26:33 +0200
parents 1d1d5d9bd884
children 8ee3605b9d8a
comparison
equal deleted inserted replaced
109098:a17732ef349e 109099:e16f43875a48
19 #ifndef MENU_H 19 #ifndef MENU_H
20 #define MENU_H 20 #define MENU_H
21 21
22 extern Lisp_Object Vmenu_updating_frame; 22 extern Lisp_Object Vmenu_updating_frame;
23 23
24 extern void init_menu_items P_ ((void)); 24 extern void init_menu_items (void);
25 extern void finish_menu_items P_ ((void)); 25 extern void finish_menu_items (void);
26 extern void discard_menu_items P_ ((void)); 26 extern void discard_menu_items (void);
27 extern void save_menu_items P_ ((void)); 27 extern void save_menu_items (void);
28 extern int parse_single_submenu P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); 28 extern int parse_single_submenu (Lisp_Object, Lisp_Object, Lisp_Object);
29 extern void list_of_panes P_ ((Lisp_Object)); 29 extern void list_of_panes (Lisp_Object);
30 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI) 30 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI)
31 extern void free_menubar_widget_value_tree P_ ((widget_value *)); 31 extern void free_menubar_widget_value_tree (widget_value *);
32 extern void update_submenu_strings P_ ((widget_value *)); 32 extern void update_submenu_strings (widget_value *);
33 extern void find_and_call_menu_selection P_ ((FRAME_PTR, int, 33 extern void find_and_call_menu_selection (FRAME_PTR, int,
34 Lisp_Object, void *)); 34 Lisp_Object, void *);
35 #endif 35 #endif
36 36
37 #ifdef HAVE_X_WINDOWS 37 #ifdef HAVE_X_WINDOWS
38 extern void mouse_position_for_popup (FRAME_PTR f, int *x, int *y); 38 extern void mouse_position_for_popup (FRAME_PTR f, int *x, int *y);
39 #endif 39 #endif