annotate lwlib/lwlib-utils.h @ 3025:facf3239ba30
[xemacs-hg @ 2005-10-25 11:16:19 by ben]
rename new->new_, convert 'foo to `foo'
EmacsFrame.c, ExternalClient.c, ExternalShell.c, chartab.c, cmdloop.c, compiler.h, console.c, database.c, device-msw.c, device-x.c, device.c, doc.c, dragdrop.c, eval.c, event-msw.c, event-stream.c, events.c, extents.c, file-coding.c, fns.c, frame-tty.c, frame.c, gpmevent.c, gutter.c, hash.c, imgproc.c, indent.c, keymap.c, lisp-union.h, macros.c, malloc.c, marker.c, menubar-x.c, menubar.c, mule-charset.c, number.c, process.c, profile.h, ralloc.c, redisplay.c, select-common.h, select.c, syntax.c, sysfile.h, sysproc.h, systime.h, syswindows.h, toolbar.c, tooltalk.c, tparam.c, unexaix.c, unexalpha.c, unexconvex.c, unexec.c, unexhp9k800.c, unexmips.c, unicode.c, window.c: new -> new_.
'foo -> `foo'.
lwlib-internal.h: redo assert macros to follow lisp.h and not trigger warnings.
lwlib.c, xlwtabs.c: new -> new_.
author |
ben |
date |
Tue, 25 Oct 2005 11:16:49 +0000 |
parents |
8de8e3f6228a |
children |
ade4c7e2c6cb |
rev |
line source |
440
|
1 #ifndef INCLUDED_lwlib_utils_h_
|
|
2 #define INCLUDED_lwlib_utils_h_
|
428
|
3
|
|
4 void destroy_all_children (Widget widget);
|
|
5 void XtNoClearRefreshWidget (Widget);
|
|
6
|
|
7 typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer);
|
|
8 typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer);
|
|
9
|
|
10 void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer);
|
|
11 void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer);
|
|
12
|
|
13 Widget *XtCompositeChildren (Widget, unsigned int *);
|
|
14
|
|
15 /* returns True is the widget is being destroyed, False otherwise */
|
|
16 Boolean
|
|
17 XtWidgetBeingDestroyedP (Widget widget);
|
|
18
|
|
19 void XtSafelyDestroyWidget (Widget);
|
|
20
|
|
21 #ifdef USE_DEBUG_MALLOC
|
|
22 #include <dmalloc.h>
|
|
23 #endif
|
440
|
24
|
|
25 #endif /* INCLUDED_lwlib_utils_h_ */
|