diff 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
line wrap: on
line diff
--- a/lwlib/lwlib-utils.h	Tue Jun 06 14:07:57 2000 +0000
+++ b/lwlib/lwlib-utils.h	Tue Jun 06 14:12:10 2000 +0000
@@ -1,20 +1,20 @@
 #ifndef _LWLIB_UTILS_H_
 #define _LWLIB_UTILS_H_
 
-void XtNoClearRefreshWidget (/* Widget */);
+void XtNoClearRefreshWidget __P ((Widget));
 
-typedef void (*XtApplyToWidgetsProc) (/* Widget, XtPointer */);
-typedef void* (*XtApplyUntilToWidgetsProc) (/* Widget, XtPointer */);
+typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer));
+typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer));
 
-void XtApplyToWidgets (/* Widget, XtApplyToWidgetsProc, XtPointer */);
-void *XtApplyUntilToWidgets (/* Widget, XtApplyUntilToWidgetsProc, XtPointer */);
+void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer));
+void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer));
 
-Widget *XtCompositeChildren (/* Widget, unsigned int * */);
+Widget *XtCompositeChildren __P ((Widget, unsigned int *));
 
 /* returns True is the widget is being destroyed, False otherwise */
 Boolean
-XtWidgetBeingDestroyedP (/* Widget widget */);
+XtWidgetBeingDestroyedP __P ((Widget widget));
 
-void XtSafelyDestroyWidget (/* Widget */);
+void XtSafelyDestroyWidget __P ((Widget));
 
 #endif /* _LWLIB_UTILS_H_ */