diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-31 04:34:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-31 04:34:11 +0000 |
commit | ab9d3e3c85c284fb4efde1a78ebab37ada89516b (patch) | |
tree | fa3f2f72312db7dbbdcb58ade8cbe27dd25b5d88 /lwlib/lwlib-utils.h | |
parent | 01492d1b7c916d117bce7d634243f2132437f270 (diff) | |
download | emacs-ab9d3e3c85c284fb4efde1a78ebab37ada89516b.tar.gz |
entered into RCS
Diffstat (limited to 'lwlib/lwlib-utils.h')
-rw-r--r-- | lwlib/lwlib-utils.h | 16 |
1 files changed, 8 insertions, 8 deletions
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 @@ #ifndef _LWLIB_UTILS_H_ #define _LWLIB_UTILS_H_ -void XtNoClearRefreshWidget (Widget); +void XtNoClearRefreshWidget (/* Widget */); -typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer); -typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer); +typedef void (*XtApplyToWidgetsProc) (/* Widget, XtPointer */); +typedef void* (*XtApplyUntilToWidgetsProc) (/* Widget, XtPointer */); -void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer); -void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer); +void XtApplyToWidgets (/* Widget, XtApplyToWidgetsProc, XtPointer */); +void *XtApplyUntilToWidgets (/* Widget, XtApplyUntilToWidgetsProc, XtPointer */); -Widget *XtCompositeChildren (Widget, unsigned int *); +Widget *XtCompositeChildren (/* Widget, unsigned int * */); /* returns True is the widget is being destroyed, False otherwise */ Boolean -XtWidgetBeingDestroyedP (Widget widget); +XtWidgetBeingDestroyedP (/* Widget widget */); -void XtSafelyDestroyWidget (Widget); +void XtSafelyDestroyWidget (/* Widget */); #endif /* _LWLIB_UTILS_H_ */ |