1 | /*
|
---|
2 | Copyright 1996, 1998 The Open Group
|
---|
3 |
|
---|
4 | Permission to use, copy, modify, distribute, and sell this software and its
|
---|
5 | documentation for any purpose is hereby granted without fee, provided that
|
---|
6 | the above copyright notice appear in all copies and that both that
|
---|
7 | copyright notice and this permission notice appear in supporting
|
---|
8 | documentation.
|
---|
9 |
|
---|
10 | The above copyright notice and this permission notice shall be included
|
---|
11 | in all copies or substantial portions of the Software.
|
---|
12 |
|
---|
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
---|
14 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
---|
15 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
---|
16 | IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
---|
17 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
---|
18 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
19 | OTHER DEALINGS IN THE SOFTWARE.
|
---|
20 |
|
---|
21 | Except as contained in this notice, the name of The Open Group shall
|
---|
22 | not be used in advertising or otherwise to promote the sale, use or
|
---|
23 | other dealings in this Software without prior written authorization
|
---|
24 | from The Open Group.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef _APPGROUP_SRV_H_
|
---|
28 | #define _APPGROUP_SRV_H_
|
---|
29 |
|
---|
30 | #include <X11/Xfuncproto.h>
|
---|
31 |
|
---|
32 | _XFUNCPROTOBEGIN
|
---|
33 |
|
---|
34 | extern void XagConnectionInfo(
|
---|
35 | ClientPtr /* client */,
|
---|
36 | xConnSetupPrefix** /* conn_prefix */,
|
---|
37 | char** /* conn_info */,
|
---|
38 | int* /* num_screens */
|
---|
39 | );
|
---|
40 |
|
---|
41 | extern VisualID XagRootVisual(
|
---|
42 | ClientPtr /* client */
|
---|
43 | );
|
---|
44 |
|
---|
45 | extern Colormap XagDefaultColormap(
|
---|
46 | ClientPtr /* client */
|
---|
47 | );
|
---|
48 |
|
---|
49 | extern ClientPtr XagLeader(
|
---|
50 | ClientPtr /* client */
|
---|
51 | );
|
---|
52 |
|
---|
53 | extern void XagCallClientStateChange(
|
---|
54 | CallbackListPtr * /* pcbl */,
|
---|
55 | pointer /* nulldata */,
|
---|
56 | pointer /* calldata */
|
---|
57 | );
|
---|
58 |
|
---|
59 | extern Bool XagIsControlledRoot (
|
---|
60 | ClientPtr /* client */,
|
---|
61 | WindowPtr /* pParent */
|
---|
62 | );
|
---|
63 |
|
---|
64 | extern XID XagId (
|
---|
65 | ClientPtr /* client */
|
---|
66 | );
|
---|
67 |
|
---|
68 | extern void XagGetDeltaInfo (
|
---|
69 | ClientPtr /* client */,
|
---|
70 | CARD32* /* buf */
|
---|
71 | );
|
---|
72 |
|
---|
73 | extern void XagClientStateChange(
|
---|
74 | CallbackListPtr* pcbl,
|
---|
75 | pointer nulldata,
|
---|
76 | pointer calldata);
|
---|
77 |
|
---|
78 | extern int ProcXagCreate (
|
---|
79 | register ClientPtr client);
|
---|
80 |
|
---|
81 | extern int ProcXagDestroy(
|
---|
82 | register ClientPtr client);
|
---|
83 |
|
---|
84 | _XFUNCPROTOEND
|
---|
85 |
|
---|
86 | #endif /* _APPGROUP_SRV_H_ */
|
---|
87 |
|
---|
88 |
|
---|
89 |
|
---|