1444c061aSmrg/***********************************************************
2444c061aSmrg
3444c061aSmrgCopyright 1987, 1988, 1998  The Open Group
4444c061aSmrg
5444c061aSmrgPermission to use, copy, modify, distribute, and sell this software and its
6444c061aSmrgdocumentation for any purpose is hereby granted without fee, provided that
7444c061aSmrgthe above copyright notice appear in all copies and that both that
8444c061aSmrgcopyright notice and this permission notice appear in supporting
9444c061aSmrgdocumentation.
10444c061aSmrg
11444c061aSmrgThe above copyright notice and this permission notice shall be included in
12444c061aSmrgall copies or substantial portions of the Software.
13444c061aSmrg
14444c061aSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15444c061aSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16444c061aSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17444c061aSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18444c061aSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19444c061aSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20444c061aSmrg
21444c061aSmrgExcept as contained in this notice, the name of The Open Group shall not be
22444c061aSmrgused in advertising or otherwise to promote the sale, use or other dealings
23444c061aSmrgin this Software without prior written authorization from The Open Group.
24444c061aSmrg
25444c061aSmrg
26444c061aSmrgCopyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
27444c061aSmrg
28444c061aSmrg                        All Rights Reserved
29444c061aSmrg
309e7bcd65SmrgPermission to use, copy, modify, and distribute this software and its
319e7bcd65Smrgdocumentation for any purpose and without fee is hereby granted,
32444c061aSmrgprovided that the above copyright notice appear in all copies and that
339e7bcd65Smrgboth that copyright notice and this permission notice appear in
34444c061aSmrgsupporting documentation, and that the name of Digital not be
35444c061aSmrgused in advertising or publicity pertaining to distribution of the
369e7bcd65Smrgsoftware without specific, written prior permission.
37444c061aSmrg
38444c061aSmrgDIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
39444c061aSmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
40444c061aSmrgDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
41444c061aSmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
42444c061aSmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
43444c061aSmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
44444c061aSmrgSOFTWARE.
45444c061aSmrg
46444c061aSmrg******************************************************************/
47444c061aSmrg
48444c061aSmrg/****************************************************************
49444c061aSmrg *
50444c061aSmrg * Callbacks
51444c061aSmrg *
52444c061aSmrg ****************************************************************/
53444c061aSmrg
54444c061aSmrgtypedef XrmResource **CallbackTable;
55444c061aSmrg
56444c061aSmrg#define _XtCBCalling 1
57444c061aSmrg#define _XtCBFreeAfterCalling 2
58444c061aSmrg
592265a131Smrg_XFUNCPROTOBEGIN
602265a131Smrg
61444c061aSmrgtypedef struct internalCallbackRec {
62444c061aSmrg    unsigned short count;
63444c061aSmrg    char	   is_padded;	/* contains NULL padding for external form */
64444c061aSmrg    char	   call_state;  /* combination of _XtCB{FreeAfter}Calling */
65fdf6a26fSmrg#if __STDC_VERSION__ >= 199901L
66fdf6a26fSmrg    /* When compiling with C99 or newer, use a flexible member to ensure
67fdf6a26fSmrg     * padding and alignment for sizeof(). */
68fdf6a26fSmrg    XtCallbackRec callbacks[];
69fdf6a26fSmrg#elif defined(LONG64)
70444c061aSmrg    unsigned int   align_pad;	/* padding to align callback list */
71444c061aSmrg#endif
72444c061aSmrg    /* XtCallbackList */
73444c061aSmrg} InternalCallbackRec, *InternalCallbackList;
74444c061aSmrg
75444c061aSmrgtypedef Boolean (*_XtConditionProc)(
76444c061aSmrg    XtPointer	/* data */
77444c061aSmrg);
78444c061aSmrg
79444c061aSmrgextern void _XtAddCallback(
80444c061aSmrg    InternalCallbackList*	/* callbacks */,
81444c061aSmrg    XtCallbackProc		/* callback */,
82444c061aSmrg    XtPointer 			/* closure */
83444c061aSmrg);
84444c061aSmrg
85444c061aSmrgextern void _XtAddCallbackOnce(
86444c061aSmrg    InternalCallbackList*	/* callbacks */,
87444c061aSmrg    XtCallbackProc		/* callback */,
88444c061aSmrg    XtPointer 			/* closure */
89444c061aSmrg);
90444c061aSmrg
91444c061aSmrgextern InternalCallbackList _XtCompileCallbackList(
92444c061aSmrg    XtCallbackList		/* xtcallbacks */
93444c061aSmrg);
94444c061aSmrg
95444c061aSmrgextern XtCallbackList _XtGetCallbackList(
96444c061aSmrg    InternalCallbackList*	/* callbacks */
97444c061aSmrg);
98444c061aSmrg
99444c061aSmrgextern void _XtRemoveAllCallbacks(
100444c061aSmrg    InternalCallbackList*	/* callbacks */
101444c061aSmrg);
102444c061aSmrg
103444c061aSmrgextern void _XtRemoveCallback(
104444c061aSmrg    InternalCallbackList*	/* callbacks */,
105444c061aSmrg    XtCallbackProc		/* callback */,
106444c061aSmrg    XtPointer			/* closure */
107444c061aSmrg);
108444c061aSmrg
109444c061aSmrgextern void _XtPeekCallback(
110444c061aSmrg    Widget			/* widget */,
111444c061aSmrg    XtCallbackList		/* callbacks */,
112444c061aSmrg    XtCallbackProc *		/* callback */,
113444c061aSmrg    XtPointer *			/* closure */
114444c061aSmrg);
115444c061aSmrg
116444c061aSmrgextern void _XtCallConditionalCallbackList(
117444c061aSmrg    Widget			/* widget */,
118444c061aSmrg    XtCallbackList		/* callbacks */,
119444c061aSmrg    XtPointer			/* call_data */,
120444c061aSmrg    _XtConditionProc		/* cond_proc */
121444c061aSmrg);
1222265a131Smrg
1232265a131Smrg_XFUNCPROTOEND
124