comparison lwlib/lwlib-utils.h @ 29466:6ed38ee607e9

Enable prototypes.
author Dave Love <fx@gnu.org>
date Tue, 06 Jun 2000 14:12:10 +0000
parents 118a6ad56ae0
children 695cf19ef79e
comparison
equal deleted inserted replaced
29465:e1023a35920f 29466:6ed38ee607e9
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 __P ((Widget));
5 5
6 typedef void (*XtApplyToWidgetsProc) (/* Widget, XtPointer */); 6 typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer));
7 typedef void* (*XtApplyUntilToWidgetsProc) (/* Widget, XtPointer */); 7 typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer));
8 8
9 void XtApplyToWidgets (/* Widget, XtApplyToWidgetsProc, XtPointer */); 9 void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer));
10 void *XtApplyUntilToWidgets (/* Widget, XtApplyUntilToWidgetsProc, XtPointer */); 10 void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer));
11 11
12 Widget *XtCompositeChildren (/* Widget, unsigned int * */); 12 Widget *XtCompositeChildren __P ((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 __P ((Widget widget));
17 17
18 void XtSafelyDestroyWidget (/* Widget */); 18 void XtSafelyDestroyWidget __P ((Widget));
19 19
20 #endif /* _LWLIB_UTILS_H_ */ 20 #endif /* _LWLIB_UTILS_H_ */