1bbe1b32bSmrg/************************************************************
2bbe1b32bSmrg
3bbe1b32bSmrgCopyright 1998 by Thomas E. Dickey <dickey@clark.net>
4bbe1b32bSmrg
5bbe1b32bSmrg                        All Rights Reserved
6bbe1b32bSmrg
7bbe1b32bSmrgPermission to use, copy, modify, and distribute this software and its
8bbe1b32bSmrgdocumentation for any purpose and without fee is hereby granted,
9bbe1b32bSmrgprovided that the above copyright notice appear in all copies and that
10bbe1b32bSmrgboth that copyright notice and this permission notice appear in
11bbe1b32bSmrgsupporting documentation, and that the name of the above listed
12bbe1b32bSmrgcopyright holder(s) not be used in advertising or publicity pertaining
13bbe1b32bSmrgto distribution of the software without specific, written prior
14bbe1b32bSmrgpermission.
15bbe1b32bSmrg
16bbe1b32bSmrgTHE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
17bbe1b32bSmrgTO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18bbe1b32bSmrgAND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
19bbe1b32bSmrgLIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
20bbe1b32bSmrgWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
21bbe1b32bSmrgACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
22bbe1b32bSmrgOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23bbe1b32bSmrg
24bbe1b32bSmrg********************************************************/
25bbe1b32bSmrg
26bbe1b32bSmrg/*
27bbe1b32bSmrg * difs/swapreq.h -- swapped requests
28bbe1b32bSmrg */
29bbe1b32bSmrg
30bbe1b32bSmrg
31bbe1b32bSmrg#ifndef _SWAPREQ_H_
32bbe1b32bSmrg#define _SWAPREQ_H_ 1
33bbe1b32bSmrg
34bbe1b32bSmrg#include <misc.h>
35bbe1b32bSmrg
36bbe1b32bSmrgextern int SProcCreateAC(ClientPtr client);
37bbe1b32bSmrgextern int SProcListCatalogues(ClientPtr client);
38bbe1b32bSmrgextern int SProcListFonts(ClientPtr client);
39bbe1b32bSmrgextern int SProcListFontsWithXInfo(ClientPtr client);
40bbe1b32bSmrgextern int SProcOpenBitmapFont(ClientPtr client);
41bbe1b32bSmrgextern int SProcQueryExtension(ClientPtr client);
42bbe1b32bSmrgextern int SProcQueryXBitmaps(ClientPtr client);
43bbe1b32bSmrgextern int SProcQueryXExtents(ClientPtr client);
44bbe1b32bSmrgextern int SProcResourceRequest(ClientPtr client);
45bbe1b32bSmrgextern int SProcSetResolution(ClientPtr client);
46bbe1b32bSmrgextern int SProcSimpleRequest(ClientPtr client);
47bbe1b32bSmrgextern int SwapConnClientPrefix(ClientPtr client, fsConnClientPrefix *pCCP);
48bbe1b32bSmrgextern void SwapLongs(long *list, unsigned long count);
49bbe1b32bSmrgextern void SwapShorts(short *list, unsigned long count);
50bbe1b32bSmrg
51bbe1b32bSmrg#endif /* _SWAPREQ_H_ */
52