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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: FS.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $ */
  2. /*
  3.  * Copyright 1990, 1991 Network Computing Devices;
  4.  * Portions Copyright 1987 by Digital Equipment Corporation 
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the names of Network Computing Devices or Digital
  11.  * not be used in advertising or publicity pertaining to distribution
  12.  * of the software without specific, written prior permission.
  13.  * Network Computing Devices and Digital make no representations 
  14.  * about the suitability of this software for any purpose.  It is provided 
  15.  * "as is" without express or implied warranty.
  16.  *
  17.  * NETWORK COMPUTING DEVICES AND DIGITAL DISCLAIM ALL WARRANTIES WITH
  18.  * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  19.  * MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES
  20.  * OR DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  21.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  22.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  23.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
  24.  * THIS SOFTWARE.
  25.  */
  26. /*
  27. Portions Copyright 1987, 1994, 1998  The Open Group
  28. Permission to use, copy, modify, distribute, and sell this software and its
  29. documentation for any purpose is hereby granted without fee, provided that
  30. the above copyright notice appear in all copies and that both that
  31. copyright notice and this permission notice appear in supporting
  32. documentation.
  33. The above copyright notice and this permission notice shall be included in
  34. all copies or substantial portions of the Software.
  35. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  36. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  37. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  38. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  39. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  40. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  41. Except as contained in this notice, the name of The Open Group shall not be
  42. used in advertising or otherwise to promote the sale, use or other dealings
  43. in this Software without prior written authorization from The Open Group.
  44. */
  45. /* $XFree86: xc/include/fonts/FS.h,v 1.9 2003/07/09 15:27:28 tsi Exp $ */
  46. #ifndef _FS_H_
  47. #define _FS_H_
  48. #include <X11/Xdefs.h>
  49. #include <X11/fonts/fsmasks.h>
  50. #define FS_PROTOCOL 2
  51. #define FS_PROTOCOL_MINOR 0
  52. #ifndef X_PROTOCOL
  53. /* protocol familes */
  54. #define FamilyInternet          0
  55. #define FamilyDECnet            1
  56. #define FamilyChaos             2
  57. #define FamilyInternet6         6
  58. typedef unsigned int    FSDrawDirection;
  59. #endif
  60. #ifndef None
  61. #define None 0L
  62. #endif
  63. #define LeftToRightDrawDirection 0
  64. #define RightToLeftDrawDirection 1
  65. /* font info flags */
  66. #define FontInfoAllCharsExist (1L << 0)
  67. #define FontInfoInkInside (1L << 1)
  68. #define FontInfoHorizontalOverlap (1L << 2)
  69. /* auth status flags */
  70. #define AuthSuccess 0
  71. #define AuthContinue 1
  72. #define AuthBusy 2
  73. #define AuthDenied 3
  74. /* property types */
  75. #define PropTypeString 0
  76. #define PropTypeUnsigned 1
  77. #define PropTypeSigned 2
  78. #ifndef LSBFirst
  79. /* byte order */
  80. #define LSBFirst                0
  81. #define MSBFirst                1
  82. #endif
  83. /* event masks */
  84. #define CatalogueChangeNotifyMask (1L << 0)
  85. #define FontChangeNotifyMask (1L << 1)
  86. /* errors */
  87. #define FSSuccess -1
  88. #define FSBadRequest 0
  89. #define FSBadFormat 1
  90. #define FSBadFont 2
  91. #define FSBadRange 3
  92. #define FSBadEventMask 4
  93. #define FSBadAccessContext 5
  94. #define FSBadIDChoice 6
  95. #define FSBadName 7
  96. #define FSBadResolution 8
  97. #define FSBadAlloc 9
  98. #define FSBadLength 10
  99. #define FSBadImplementation 11
  100. #define FirstExtensionError 128
  101. #define LastExtensionError 255
  102. /* events */
  103. #define KeepAlive 0
  104. #define CatalogueChangeNotify 1
  105. #define FontChangeNotify 2
  106. #define FSLASTEvent 3
  107. #endif /* _FS_H_ */