comparison src/gui.h @ 5120:d1247f3cc363 ben-lisp-object

latest work on lisp-object workspace; more changes eliminating LCRECORD in place of LISP_OBJECT; now compiles and runs.
author Ben Wing <ben@xemacs.org>
date Mon, 28 Dec 2009 01:15:52 -0600
parents e0db3c197671
children a9c41067dd88
comparison
equal deleted inserted replaced
5119:d877c14318b3 5120:d1247f3cc363
42 42
43 /* This structure describes gui button, 43 /* This structure describes gui button,
44 menu item or submenu properties */ 44 menu item or submenu properties */
45 struct Lisp_Gui_Item 45 struct Lisp_Gui_Item
46 { 46 {
47 struct LCRECORD_HEADER header; 47 LISP_OBJECT_HEADER header;
48 Lisp_Object name; /* String */ 48 Lisp_Object name; /* String */
49 Lisp_Object callback; /* Symbol or form */ 49 Lisp_Object callback; /* Symbol or form */
50 Lisp_Object callback_ex; /* Form taking context arguments */ 50 Lisp_Object callback_ex; /* Form taking context arguments */
51 Lisp_Object suffix; /* String */ 51 Lisp_Object suffix; /* String */
52 Lisp_Object active; /* Form */ 52 Lisp_Object active; /* Form */