Xmd.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XdotOrg: $ */
  2. /* $XFree86: xc/include/Xmd.h,v 3.18tsi Exp $ */
  3. /***********************************************************
  4. Copyright 1987, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  22.                         All Rights Reserved
  23. Permission to use, copy, modify, and distribute this software and its
  24. documentation for any purpose and without fee is hereby granted,
  25. provided that the above copyright notice appear in all copies and that
  26. both that copyright notice and this permission notice appear in
  27. supporting documentation, and that the name of Digital not be
  28. used in advertising or publicity pertaining to distribution of the
  29. software without specific, written prior permission.
  30. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  31. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  32. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  33. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  34. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  35. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  36. SOFTWARE.
  37. ******************************************************************/
  38. #ifndef XMD_H
  39. #define XMD_H 1
  40. /* $Xorg: Xmd.h,v 1.4 2001/02/09 02:03:22 xorgcvs Exp $ */
  41. /*
  42.  *  Xmd.h: MACHINE DEPENDENT DECLARATIONS.
  43.  */
  44. /*
  45.  * Special per-machine configuration flags.
  46.  */
  47. #if defined(sun) && defined(__SVR4)
  48. # include <sys/isa_defs.h> /* Solaris: defines _LP64 if necessary */
  49. #endif
  50. #ifdef CRAY
  51. #define WORD64 /* 64-bit architecture */
  52. #endif
  53. #if defined (_LP64) || 
  54.     defined(__alpha) || defined(__alpha__) || 
  55.     defined(__ia64__) || defined(ia64) || 
  56.     defined(__sparc64__) || 
  57.     defined(__s390x__) || 
  58.     (defined(__hppa__) && defined(__LP64__)) || 
  59.     defined(__amd64__) || defined(amd64) || 
  60.     defined(__powerpc64__) || 
  61.     (defined(sgi) && (_MIPS_SZLONG == 64))
  62. #define LONG64 /* 32/64-bit architecture */
  63. #endif
  64. /*
  65.  * Stuff to handle large architecture machines; the constants were generated
  66.  * on a 32-bit machine and must correspond to the protocol.
  67.  */
  68. #ifdef WORD64
  69. #define MUSTCOPY
  70. #endif /* WORD64 */
  71. /*
  72.  * Definition of macro used to set constants for size of network structures;
  73.  * machines with preprocessors that can't handle all of the sz_ symbols
  74.  * can define this macro to be sizeof(x) if and only if their compiler doesn't
  75.  * pad out structures (esp. the xTextElt structure which contains only two
  76.  * one-byte fields).  Network structures should always define sz_symbols.
  77.  *
  78.  * The sz_ prefix is used instead of something more descriptive so that the
  79.  * symbols are no more than 32 characters long (which causes problems for some
  80.  * compilers and preprocessors).
  81.  *
  82.  * The extra indirection in the __STDC__ case is to get macro arguments to
  83.  * expand correctly before the concatenation, rather than afterward.
  84.  */
  85. #if ((defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)) && !defined(UNIXCPP)) || defined(ANSICPP)
  86. #define _SIZEOF(x) sz_##x
  87. #define SIZEOF(x) _SIZEOF(x)
  88. #else
  89. #define SIZEOF(x) sz_/**/x
  90. #endif /* if ANSI C compiler else not */
  91. /*
  92.  * Bitfield suffixes for the protocol structure elements, if you
  93.  * need them.  Note that bitfields are not guaranteed to be signed
  94.  * (or even unsigned) according to ANSI C.
  95.  */
  96. #ifdef WORD64
  97. typedef long INT64;
  98. typedef unsigned long CARD64;
  99. #define B32 :32
  100. #define B16 :16
  101. #ifdef UNSIGNEDBITFIELDS
  102. typedef unsigned int INT32;
  103. typedef unsigned int INT16;
  104. #else
  105. #ifdef __STDC__
  106. typedef signed int INT32;
  107. typedef signed int INT16;
  108. #else
  109. typedef int INT32;
  110. typedef int INT16;
  111. #endif
  112. #endif
  113. #else
  114. #define B32
  115. #define B16
  116. #ifdef LONG64
  117. typedef long INT64;
  118. typedef int INT32;
  119. #else
  120. typedef long INT32;
  121. #endif
  122. typedef short INT16;
  123. #endif
  124. #if defined(__STDC__) || defined(sgi) || defined(_AIX)
  125. typedef signed char    INT8;
  126. #else
  127. typedef char           INT8;
  128. #endif
  129. #ifdef LONG64
  130. typedef unsigned long CARD64;
  131. typedef unsigned int CARD32;
  132. #else
  133. typedef unsigned long CARD32;
  134. #endif
  135. #if !defined(WORD64) && !defined(LONG64)
  136. typedef unsigned long long CARD64;
  137. #endif
  138. typedef unsigned short CARD16;
  139. typedef unsigned char  CARD8;
  140. typedef CARD32 BITS32;
  141. typedef CARD16 BITS16;
  142. #ifndef I_NEED_OS2_H
  143. typedef CARD8 BYTE;
  144. typedef CARD8 BOOL;
  145. #else
  146. #define BYTE CARD8
  147. #define BOOL CARD8
  148. #endif
  149. /*
  150.  * definitions for sign-extending bitfields on 64-bit architectures
  151.  */
  152. #if defined(WORD64) && defined(UNSIGNEDBITFIELDS)
  153. #define cvtINT8toInt(val)   (((val) & 0x00000080) ? ((val) | 0xffffffffffffff00) : (val))
  154. #define cvtINT16toInt(val)  (((val) & 0x00008000) ? ((val) | 0xffffffffffff0000) : (val))
  155. #define cvtINT32toInt(val)  (((val) & 0x80000000) ? ((val) | 0xffffffff00000000) : (val))
  156. #define cvtINT8toShort(val)  cvtINT8toInt(val)
  157. #define cvtINT16toShort(val) cvtINT16toInt(val)
  158. #define cvtINT32toShort(val) cvtINT32toInt(val)
  159. #define cvtINT8toLong(val)  cvtINT8toInt(val)
  160. #define cvtINT16toLong(val) cvtINT16toInt(val)
  161. #define cvtINT32toLong(val) cvtINT32toInt(val)
  162. #else
  163. #define cvtINT8toInt(val) (val)
  164. #define cvtINT16toInt(val) (val)
  165. #define cvtINT32toInt(val) (val)
  166. #define cvtINT8toShort(val) (val)
  167. #define cvtINT16toShort(val) (val)
  168. #define cvtINT32toShort(val) (val)
  169. #define cvtINT8toLong(val) (val)
  170. #define cvtINT16toLong(val) (val)
  171. #define cvtINT32toLong(val) (val)
  172. #endif /* WORD64 and UNSIGNEDBITFIELDS */
  173. #ifdef MUSTCOPY
  174. /*
  175.  * This macro must not cast or else pointers will get aligned and be wrong
  176.  */
  177. #define NEXTPTR(p,t)  (((char *) p) + SIZEOF(t))
  178. #else /* else not MUSTCOPY, this is used for 32-bit machines */
  179. /*
  180.  * this version should leave result of type (t *), but that should only be
  181.  * used when not in MUSTCOPY
  182.  */
  183. #define NEXTPTR(p,t) (((t *)(p)) + 1)
  184. #endif /* MUSTCOPY - used machines whose C structs don't line up with proto */
  185. #endif /* XMD_H */