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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* Xfuncproto.h.  Generated from Xfuncproto.h.in by configure.  */
  2. /* $Xorg: Xfuncproto.h,v 1.4 2001/02/09 02:03:22 xorgcvs Exp $ */
  3. /*
  4.  *
  5. Copyright 1989, 1991, 1998  The Open Group
  6. Permission to use, copy, modify, distribute, and sell this software and its
  7. documentation for any purpose is hereby granted without fee, provided that
  8. the above copyright notice appear in all copies and that both that
  9. copyright notice and this permission notice appear in supporting
  10. documentation.
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of The Open Group shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from The Open Group.
  22.  *
  23.  */
  24. /* $XFree86: xc/include/Xfuncproto.h,v 3.4 2001/12/14 19:53:25 dawes Exp $ */
  25. /* Definitions to make function prototypes manageable */
  26. #ifndef _XFUNCPROTO_H_
  27. #define _XFUNCPROTO_H_
  28. #ifndef NeedFunctionPrototypes
  29. #define NeedFunctionPrototypes 1
  30. #endif /* NeedFunctionPrototypes */
  31. #ifndef NeedVarargsPrototypes
  32. #define NeedVarargsPrototypes 1
  33. #endif /* NeedVarargsPrototypes */
  34. #if NeedFunctionPrototypes
  35. #ifndef NeedNestedPrototypes
  36. #define NeedNestedPrototypes 1
  37. #endif /* NeedNestedPrototypes */
  38. #ifndef _Xconst
  39. #define _Xconst const
  40. #endif /* _Xconst */
  41. /* Function prototype configuration (see configure for more info) */
  42. #ifndef NARROWPROTO
  43. /* #undef NARROWPROTO */
  44. #endif
  45. #ifndef FUNCPROTO
  46. /* #undef FUNCPROTO */
  47. #endif
  48. #ifndef NeedWidePrototypes
  49. #ifdef NARROWPROTO
  50. #define NeedWidePrototypes 0
  51. #else
  52. #define NeedWidePrototypes 1 /* default to make interropt. easier */
  53. #endif
  54. #endif /* NeedWidePrototypes */
  55. #endif /* NeedFunctionPrototypes */
  56. #ifndef _XFUNCPROTOBEGIN
  57. #if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
  58. #define _XFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
  59. #define _XFUNCPROTOEND }
  60. #else
  61. #define _XFUNCPROTOBEGIN
  62. #define _XFUNCPROTOEND
  63. #endif
  64. #endif /* _XFUNCPROTOBEGIN */
  65. #if defined(__GNUC__) && (__GNUC__ >= 4)
  66. # define _X_SENTINEL(x) __attribute__ ((__sentinel__(x)))
  67. # define _X_ATTRIBUTE_PRINTF(x,y) __attribute__((__format__(__printf__,x,y)))
  68. #else
  69. # define _X_SENTINEL(x)
  70. # define _X_ATTRIBUTE_PRINTF(x,y)
  71. #endif /* GNUC >= 4 */
  72. #if defined(__GNUC__) && (__GNUC__ >= 4)
  73. # define _X_EXPORT      __attribute__((visibility("default")))
  74. # define _X_HIDDEN      __attribute__((visibility("hidden")))
  75. # define _X_INTERNAL    __attribute__((visibility("internal")))
  76. #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
  77. # define _X_EXPORT      __global
  78. # define _X_HIDDEN      __hidden
  79. # define _X_INTERNAL    __hidden
  80. #else /* not gcc >= 4 and not Sun Studio >= 8 */
  81. # define _X_EXPORT
  82. # define _X_HIDDEN
  83. # define _X_INTERNAL
  84. #endif /* GNUC >= 4 */
  85. #if defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 303)
  86. # define _X_LIKELY(x)   __builtin_expect(!!(x), 1)
  87. # define _X_UNLIKELY(x) __builtin_expect(!!(x), 0)
  88. # define _X_INLINE      inline
  89. #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
  90. # define _X_LIKELY(x)   (x)
  91. # define _X_UNLIKELY(x) (x)
  92. # define _X_INLINE      inline
  93. #else /* not gcc >= 3.3 and not Sun Studio >= 8 */
  94. # define _X_LIKELY(x)   (x)
  95. # define _X_UNLIKELY(x) (x)
  96. # define _X_INLINE
  97. #endif
  98. #if defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 301)
  99. # define _X_DEPRECATED  __attribute__((deprecated))
  100. #else /* not gcc >= 3.1 */
  101. # define _X_DEPRECATED
  102. #endif
  103. #endif /* _XFUNCPROTO_H_ */