(Fstring_to_syntax): New function extracted from Fmodify_syntax_entry.
[bpt/emacs.git] / lwlib / lwlib-utils.h
... / ...
CommitLineData
1#ifndef _LWLIB_UTILS_H_
2#define _LWLIB_UTILS_H_
3
4void XtNoClearRefreshWidget __P ((Widget));
5
6typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer));
7typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer));
8
9void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer));
10void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer));
11
12Widget *XtCompositeChildren __P ((Widget, unsigned int *));
13
14/* returns True is the widget is being destroyed, False otherwise */
15Boolean
16XtWidgetBeingDestroyedP __P ((Widget widget));
17
18void XtSafelyDestroyWidget __P ((Widget));
19
20#endif /* _LWLIB_UTILS_H_ */