diff options
| author | Richard M. Stallman | 1994-01-31 04:34:11 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-31 04:34:11 +0000 |
| commit | ab9d3e3c85c284fb4efde1a78ebab37ada89516b (patch) | |
| tree | fa3f2f72312db7dbbdcb58ade8cbe27dd25b5d88 | |
| parent | 01492d1b7c916d117bce7d634243f2132437f270 (diff) | |
| download | emacs-ab9d3e3c85c284fb4efde1a78ebab37ada89516b.tar.gz emacs-ab9d3e3c85c284fb4efde1a78ebab37ada89516b.zip | |
entered into RCS
| -rw-r--r-- | lwlib/lwlib-Xlw.h | 16 | ||||
| -rw-r--r-- | lwlib/lwlib-utils.h | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/lwlib/lwlib-Xlw.h b/lwlib/lwlib-Xlw.h index 41a43383698..037e18af89d 100644 --- a/lwlib/lwlib-Xlw.h +++ b/lwlib/lwlib-Xlw.h | |||
| @@ -7,23 +7,23 @@ extern widget_creation_entry xlw_creation_table []; | |||
| 7 | extern widget_creation_function xlw_create_dialog; | 7 | extern widget_creation_function xlw_create_dialog; |
| 8 | 8 | ||
| 9 | Boolean | 9 | Boolean |
| 10 | lw_lucid_widget_p (Widget widget); | 10 | lw_lucid_widget_p (/* Widget widget */); |
| 11 | 11 | ||
| 12 | void | 12 | void |
| 13 | xlw_update_one_widget (widget_instance* instance, Widget widget, | 13 | xlw_update_one_widget (/* widget_instance* instance, Widget widget, |
| 14 | widget_value* val, Boolean deep_p); | 14 | widget_value* val, Boolean deep_p */); |
| 15 | 15 | ||
| 16 | void | 16 | void |
| 17 | xlw_update_one_value (widget_instance* instance, Widget widget, | 17 | xlw_update_one_value (/* widget_instance* instance, Widget widget, |
| 18 | widget_value* val); | 18 | widget_value* val */); |
| 19 | 19 | ||
| 20 | void | 20 | void |
| 21 | xlw_destroy_instance (widget_instance* instance); | 21 | xlw_destroy_instance (/* widget_instance* instance */); |
| 22 | 22 | ||
| 23 | void | 23 | void |
| 24 | xlw_pop_instance (widget_instance* instance, Boolean up); | 24 | xlw_pop_instance (/* widget_instance* instance, Boolean up */); |
| 25 | 25 | ||
| 26 | void | 26 | void |
| 27 | xlw_popup_menu (Widget widget); | 27 | xlw_popup_menu (/* Widget widget */); |
| 28 | 28 | ||
| 29 | #endif /* LWLIB_XLW_H */ | 29 | #endif /* LWLIB_XLW_H */ |
diff --git a/lwlib/lwlib-utils.h b/lwlib/lwlib-utils.h index c5991f2d5e4..020d2a982dc 100644 --- a/lwlib/lwlib-utils.h +++ b/lwlib/lwlib-utils.h | |||
| @@ -1,20 +1,20 @@ | |||
| 1 | #ifndef _LWLIB_UTILS_H_ | 1 | #ifndef _LWLIB_UTILS_H_ |
| 2 | #define _LWLIB_UTILS_H_ | 2 | #define _LWLIB_UTILS_H_ |
| 3 | 3 | ||
| 4 | void XtNoClearRefreshWidget (Widget); | 4 | void XtNoClearRefreshWidget (/* Widget */); |
| 5 | 5 | ||
| 6 | typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer); | 6 | typedef void (*XtApplyToWidgetsProc) (/* Widget, XtPointer */); |
| 7 | typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer); | 7 | typedef void* (*XtApplyUntilToWidgetsProc) (/* Widget, XtPointer */); |
| 8 | 8 | ||
| 9 | void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer); | 9 | void XtApplyToWidgets (/* Widget, XtApplyToWidgetsProc, XtPointer */); |
| 10 | void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer); | 10 | void *XtApplyUntilToWidgets (/* Widget, XtApplyUntilToWidgetsProc, XtPointer */); |
| 11 | 11 | ||
| 12 | Widget *XtCompositeChildren (Widget, unsigned int *); | 12 | Widget *XtCompositeChildren (/* Widget, unsigned int * */); |
| 13 | 13 | ||
| 14 | /* returns True is the widget is being destroyed, False otherwise */ | 14 | /* returns True is the widget is being destroyed, False otherwise */ |
| 15 | Boolean | 15 | Boolean |
| 16 | XtWidgetBeingDestroyedP (Widget widget); | 16 | XtWidgetBeingDestroyedP (/* Widget widget */); |
| 17 | 17 | ||
| 18 | void XtSafelyDestroyWidget (Widget); | 18 | void XtSafelyDestroyWidget (/* Widget */); |
| 19 | 19 | ||
| 20 | #endif /* _LWLIB_UTILS_H_ */ | 20 | #endif /* _LWLIB_UTILS_H_ */ |