diff options
author | Dave Love <fx@gnu.org> | 2000-06-06 14:12:10 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-06 14:12:10 +0000 |
commit | 99570665ff9d1822bcd45a27135906e3bd5c786b (patch) | |
tree | 1741458eadb7401eb30927e5cb7e43767aed346f /lwlib/lwlib-utils.h | |
parent | 4374c6b0cb768a84c0eeb4826744c9b898734cbe (diff) | |
download | emacs-99570665ff9d1822bcd45a27135906e3bd5c786b.tar.gz |
Enable prototypes.
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 020d2a982dc..c2a7607b136 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 __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_ */ |