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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XFree86: xc/include/Xdefs.h,v 1.2 1999/08/22 06:21:20 dawes Exp $ */
  2. /***********************************************************
  3. Copyright (c) 1999  The XFree86 Project Inc.
  4. All Rights Reserved.
  5. The above copyright notice and this permission notice shall be included in
  6. all copies or substantial portions of the Software.
  7. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  8. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  9. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  10. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  11. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  12. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  13. Except as contained in this notice, the name of The XFree86 Project
  14. Inc. shall not be used in advertising or otherwise to promote the
  15. sale, use or other dealings in this Software without prior written
  16. authorization from The XFree86 Project Inc..
  17. */
  18. /**
  19.  ** Types definitions shared between server and clients 
  20.  **/
  21. #ifndef _XDEFS_H
  22. #define _XDEFS_H
  23. #ifdef _XSERVER64
  24. #include <X11/Xmd.h>
  25. #endif 
  26. #ifndef _XTYPEDEF_ATOM
  27. #  define _XTYPEDEF_ATOM
  28. #  ifndef _XSERVER64
  29. typedef unsigned long Atom;
  30. #  else
  31. typedef CARD32 Atom;
  32. #  endif
  33. #endif
  34. #ifndef Bool
  35. #  ifndef _XTYPEDEF_BOOL
  36. #   define _XTYPEDEF_BOOL
  37. typedef int Bool;
  38. #  endif
  39. #endif
  40. #ifndef _XTYPEDEF_POINTER
  41. #  define _XTYPEDEF_POINTER
  42. typedef void *pointer;
  43. #endif
  44. #ifndef _XTYPEDEF_CLIENTPTR
  45. typedef struct _Client *ClientPtr;
  46. #  define _XTYPEDEF_CLIENTPTR
  47. #endif
  48. #ifndef _XTYPEDEF_XID
  49. #  define _XTYPEDEF_XID
  50. #  ifndef _XSERVER64
  51. typedef unsigned long XID;
  52. #  else
  53. typedef CARD32 XID;
  54. #  endif
  55. #endif
  56. #ifndef _XTYPEDEF_MASK
  57. #  define _XTYPEDEF_MASK
  58. #  ifndef _XSERVER64
  59. typedef unsigned long Mask;
  60. #  else
  61. typedef CARD32 Mask;
  62. #  endif
  63. #endif
  64. #ifndef _XTYPEDEF_FONTPTR
  65. #  define _XTYPEDEF_FONTPTR
  66. typedef struct _Font *FontPtr; /* also in fonts/include/font.h */
  67. #endif
  68. #ifndef _XTYPEDEF_FONT
  69. #  define _XTYPEDEF_FONT
  70. typedef XID Font;
  71. #endif
  72. #ifndef _XTYPEDEF_FSID
  73. #  ifndef _XSERVER64
  74. typedef unsigned long FSID;
  75. #  else
  76. typedef CARD32 FSID;
  77. #  endif
  78. #endif
  79. typedef FSID AccContext;
  80. /* OS independent time value 
  81.    XXX Should probably go in Xos.h */
  82. typedef struct timeval **OSTimePtr;
  83. typedef void (* BlockHandlerProcPtr)(pointer /* blockData */,
  84.      OSTimePtr /* pTimeout */,
  85.      pointer /* pReadmask */);
  86. #endif