CloseHook.h revision 6c321187
1/* $Xorg: CloseHook.h,v 1.5 2001/02/09 02:03:51 xorgcvs Exp $ */
2
3/*
4
5Copyright 1988, 1998  The Open Group
6
7Permission to use, copy, modify, distribute, and sell this software and its
8documentation for any purpose is hereby granted without fee, provided that
9the above copyright notice appear in all copies and that both that
10copyright notice and this permission notice appear in supporting
11documentation.
12
13The above copyright notice and this permission notice shall be included in
14all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
19OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23Except as contained in this notice, the name of The Open Group shall not be
24used in advertising or otherwise to promote the sale, use or other dealings
25in this Software without prior written authorization from The Open Group.
26
27*/
28/* $XFree86: xc/lib/Xmu/CloseHook.h,v 1.6 2001/01/17 19:42:53 dawes Exp $ */
29
30/*
31 * The interfaces described by this header file are for miscellaneous utilities
32 * and are not part of the Xlib standard.
33 */
34
35#ifndef _XMU_CLOSEHOOK_H_
36#define _XMU_CLOSEHOOK_H_
37
38#include <X11/Xlib.h>
39#include <X11/Xfuncproto.h>
40#include <X11/Xlibint.h>
41
42typedef XPointer CloseHook;
43
44typedef int (*XmuCloseHookProc)(Display *dpy, XPointer data);
45
46_XFUNCPROTOBEGIN
47
48CloseHook XmuAddCloseDisplayHook
49(
50 Display		*dpy,
51 XmuCloseHookProc	proc,
52 XPointer		arg
53 );
54
55Bool XmuLookupCloseDisplayHook
56(
57 Display		*dpy,
58 CloseHook		handle,
59 XmuCloseHookProc	proc,
60 XPointer		arg
61 );
62
63Bool XmuRemoveCloseDisplayHook
64(
65 Display		*dpy,
66 CloseHook		handle,
67 XmuCloseHookProc	proc,
68 XPointer		arg
69 );
70
71_XFUNCPROTOEND
72
73#endif /* _XMU_CLOSEHOOK_H_ */
74