]> git.sesse.net Git - rdpsrv/blob - Xserver/include/extensions/Xagsrv.h
Support RDP5 logon packets.
[rdpsrv] / Xserver / include / extensions / Xagsrv.h
1 /*
2 Copyright (c) 1996  X Consortium
3
4 Permission is hereby granted, free of charge, to any person obtaining
5 a copy of this software and associated documentation files (the
6 "Software"), to deal in the Software without restriction, including
7 without limitation the rights to use, copy, modify, merge, publish,
8 distribute, sublicense, and sell copies of the Software, and to
9 permit persons to whom the Software is furnished to do so, subject to
10 the following conditions:
11
12 The above copyright notice and this permission notice shall be included
13 in all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 OTHER DEALINGS IN THE SOFTWARE.
22
23 Except as contained in this notice, the name of the X Consortium shall
24 not be used in advertising or otherwise to promote the sale, use or
25 other dealings in this Software without prior written authorization
26 from the X Consortium.
27 */
28 /* $XConsortium: Xagsrv.h /main/7 1996/11/22 14:48:37 kaleb $ */
29
30 #ifndef _XAGSRV_H_
31 #define _XAGSRV_H_
32
33 extern void XagExtensionInit(
34 #if NeedFunctionPrototypes
35     void
36 #endif
37 );
38
39 extern void XagConnectionInfo(
40 #if NeedFunctionPrototypes
41     ClientPtr                   /* client */,
42     xConnSetupPrefix**          /* conn_prefix */,
43     char**                      /* conn_info */,
44     int*                        /* num_screens */
45 #endif
46 );
47
48 extern VisualID XagRootVisual(
49 #if NeedFunctionPrototypes
50     ClientPtr                   /* client */
51 #endif
52 );
53
54 extern Colormap XagDefaultColormap(
55 #if NeedFunctionPrototypes
56     ClientPtr                   /* client */
57 #endif
58 );
59
60 extern ClientPtr XagLeader(
61 #if NeedFunctionPrototypes
62     ClientPtr                   /* client */
63 #endif
64 );
65
66 extern void XagCallClientStateChange(
67 #if NeedFunctionPrototypes
68     ClientPtr                   /* client */
69 #endif
70 );
71
72 extern Bool XagIsControlledRoot (
73 #if NeedFunctionPrototypes
74     ClientPtr                   /* client */,
75     WindowPtr                   /* pParent */
76 #endif
77 );
78
79 extern XID XagId (
80 #if NeedFunctionPrototypes
81     ClientPtr                   /* client */
82 #endif
83 );
84
85 extern void XagGetDeltaInfo (
86 #if NeedFunctionPrototypes
87     ClientPtr                   /* client */,
88     CARD32*                     /* buf */
89 #endif
90 );
91
92 #endif /* _XAGSRV_H_ */
93