/* $XConsortium: misc.h /main/3 1996/11/22 11:01:56 rws $ */ /* Copyright (c) 1995 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. */ #ifndef MISC_H #define MISC_H 1 #define NEED_EVENTS #define NEED_REPLIES #define _XLBX_SERVER_ #include #include #include #include "Xos.h" #define ALLOCATE_LOCAL_FALLBACK(_size) Xalloc(_size) #define DEALLOCATE_LOCAL_FALLBACK(_ptr) Xfree(_ptr) #include "Xalloca.h" #include "Xfuncs.h" #include "Xfuncproto.h" typedef void *pointer; typedef int Bool; #ifndef TRUE #define FALSE 0 #define TRUE 1 #endif typedef struct _Client *ClientPtr; typedef struct _XServer *XServerPtr; #ifndef NULL #define NULL 0 #endif #define DE_RESET 1 #define DE_TERMINATE 2 #define MILLI_PER_SECOND (1000) /* XXX globals.h? */ extern char dispatchException; extern char isItTimeToYield; extern unsigned long serverGeneration; extern int MaxClients; /* The following byte swapping tools are duplicated in several places. * Do they deserve their own header file? What else would logically go in * such a header? */ /* byte swap a 32-bit literal */ #define lswapl(x) ((((x) & 0xff) << 24) |\ (((x) & 0xff00) << 8) |\ (((x) & 0xff0000) >> 8) |\ (((x) >> 24) & 0xff)) /* byte swap a short literal */ #define lswaps(x) ((((x) & 0xff) << 8) | (((x) >> 8) & 0xff)) /* byte swap a 32-bit value */ #define swapl(x, n) { \ n = ((char *) (x))[0];\ ((char *) (x))[0] = ((char *) (x))[3];\ ((char *) (x))[3] = n;\ n = ((char *) (x))[1];\ ((char *) (x))[1] = ((char *) (x))[2];\ ((char *) (x))[2] = n; } /* byte swap a short */ #define swaps(x, n) { \ n = ((char *) (x))[0];\ ((char *) (x))[0] = ((char *) (x))[1];\ ((char *) (x))[1] = n; } /* copy 32-bit value from src to dst byteswapping on the way */ #define cpswapl(src, dst) { \ ((char *)&(dst))[0] = ((char *) &(src))[3];\ ((char *)&(dst))[1] = ((char *) &(src))[2];\ ((char *)&(dst))[2] = ((char *) &(src))[1];\ ((char *)&(dst))[3] = ((char *) &(src))[0]; } /* copy short from src to dst byteswapping on the way */ #define cpswaps(src, dst) { \ ((char *) &(dst))[0] = ((char *) &(src))[1];\ ((char *) &(dst))[1] = ((char *) &(src))[0]; } #define min(a, b) (((a) < (b)) ? (a) : (b)) #define lowbit(x) ((x) & (~(x) + 1)) #define REQUEST(type) \ register type *stuff = (type *)client->requestBuffer #endif