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