/external/include/glib/glibconfig.h

https://github.com/SLIBIO/SLib · C Header · 212 lines · 161 code · 39 blank · 12 comment · 7 complexity · 43f31bc186b24b1761c16760f9fb8249 MD5 · raw file

  1. /* glibconfig.h
  2. *
  3. * This is a generated file. Please modify 'configure.ac'
  4. */
  5. #ifndef __GLIBCONFIG_H__
  6. #define __GLIBCONFIG_H__
  7. #include <glib/gmacros.h>
  8. #include <limits.h>
  9. #include <float.h>
  10. #define GLIB_HAVE_ALLOCA_H
  11. /* Specifies that GLib's g_print*() functions wrap the
  12. * system printf functions. This is useful to know, for example,
  13. * when using glibc's register_printf_function().
  14. */
  15. #define GLIB_USING_SYSTEM_PRINTF
  16. G_BEGIN_DECLS
  17. #define G_MINFLOAT FLT_MIN
  18. #define G_MAXFLOAT FLT_MAX
  19. #define G_MINDOUBLE DBL_MIN
  20. #define G_MAXDOUBLE DBL_MAX
  21. #define G_MINSHORT SHRT_MIN
  22. #define G_MAXSHORT SHRT_MAX
  23. #define G_MAXUSHORT USHRT_MAX
  24. #define G_MININT INT_MIN
  25. #define G_MAXINT INT_MAX
  26. #define G_MAXUINT UINT_MAX
  27. #define G_MINLONG LONG_MIN
  28. #define G_MAXLONG LONG_MAX
  29. #define G_MAXULONG ULONG_MAX
  30. typedef signed char gint8;
  31. typedef unsigned char guint8;
  32. typedef signed short gint16;
  33. typedef unsigned short guint16;
  34. #define G_GINT16_MODIFIER "h"
  35. #define G_GINT16_FORMAT "hi"
  36. #define G_GUINT16_FORMAT "hu"
  37. typedef signed int gint32;
  38. typedef unsigned int guint32;
  39. #define G_GINT32_MODIFIER ""
  40. #define G_GINT32_FORMAT "i"
  41. #define G_GUINT32_FORMAT "u"
  42. #define G_HAVE_GINT64 1 /* deprecated, always true */
  43. typedef signed long long gint64;
  44. typedef unsigned long long guint64;
  45. #define G_GINT64_CONSTANT(val) (val##L)
  46. #define G_GUINT64_CONSTANT(val) (val##UL)
  47. #define G_GINT64_MODIFIER "l"
  48. #define G_GINT64_FORMAT "li"
  49. #define G_GUINT64_FORMAT "lu"
  50. #define GLIB_SIZEOF_VOID_P __SIZEOF_POINTER__
  51. #define GLIB_SIZEOF_LONG __SIZEOF_LONG__
  52. #define GLIB_SIZEOF_SIZE_T __SIZEOF_SIZE_T__
  53. #define GLIB_SIZEOF_SSIZE_T __SIZEOF_SIZE_T__
  54. #if __SIZEOF_POINTER__ == 8
  55. typedef gint64 gssize;
  56. typedef guint64 gsize;
  57. #else
  58. typedef gint32 gssize;
  59. typedef guint32 gsize;
  60. #endif
  61. #define G_GSIZE_MODIFIER "l"
  62. #define G_GSSIZE_MODIFIER "l"
  63. #define G_GSIZE_FORMAT "lu"
  64. #define G_GSSIZE_FORMAT "li"
  65. #define G_MAXSIZE G_MAXULONG
  66. #define G_MINSSIZE G_MINLONG
  67. #define G_MAXSSIZE G_MAXLONG
  68. typedef gint64 goffset;
  69. #define G_MINOFFSET G_MININT64
  70. #define G_MAXOFFSET G_MAXINT64
  71. #define G_GOFFSET_MODIFIER G_GINT64_MODIFIER
  72. #define G_GOFFSET_FORMAT G_GINT64_FORMAT
  73. #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
  74. #define GPOINTER_TO_INT(p) ((gint) (glong) (p))
  75. #define GPOINTER_TO_UINT(p) ((guint) (gulong) (p))
  76. #define GINT_TO_POINTER(i) ((gpointer) (glong) (i))
  77. #define GUINT_TO_POINTER(u) ((gpointer) (gulong) (u))
  78. typedef gssize gintptr;
  79. typedef gsize guintptr;
  80. #define G_GINTPTR_MODIFIER "l"
  81. #define G_GINTPTR_FORMAT "li"
  82. #define G_GUINTPTR_FORMAT "lu"
  83. #ifndef G_DISABLE_DEPRECATED
  84. #define g_ATEXIT(proc) (atexit (proc))
  85. #define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
  86. #endif
  87. #define GLIB_MAJOR_VERSION 2
  88. #define GLIB_MINOR_VERSION 46
  89. #define GLIB_MICRO_VERSION 2
  90. #define G_OS_UNIX
  91. #define G_VA_COPY va_copy
  92. #define G_VA_COPY_AS_ARRAY 1
  93. #ifdef __cplusplus
  94. #define G_HAVE_INLINE 1
  95. #else /* !__cplusplus */
  96. #define G_HAVE_INLINE 1
  97. #define G_HAVE___INLINE 1
  98. #define G_HAVE___INLINE__ 1
  99. #endif /* !__cplusplus */
  100. #ifdef __cplusplus
  101. #define G_CAN_INLINE 1
  102. #else /* !__cplusplus */
  103. #define G_CAN_INLINE 1
  104. #endif
  105. #ifndef __cplusplus
  106. # define G_HAVE_ISO_VARARGS 1
  107. #endif
  108. #ifdef __cplusplus
  109. # define G_HAVE_ISO_VARARGS 1
  110. #endif
  111. /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
  112. * is passed ISO vararg support is turned off, and there is no work
  113. * around to turn it on, so we unconditionally turn it off.
  114. */
  115. #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
  116. # undef G_HAVE_ISO_VARARGS
  117. #endif
  118. #define G_HAVE_GNUC_VARARGS 1
  119. #define G_HAVE_GROWING_STACK 0
  120. #define G_HAVE_GNUC_VISIBILITY 1
  121. #if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
  122. #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
  123. #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
  124. #define G_GNUC_INTERNAL __hidden
  125. #elif defined (__GNUC__) && defined (G_HAVE_GNUC_VISIBILITY)
  126. #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
  127. #else
  128. #define G_GNUC_INTERNAL
  129. #endif
  130. #define G_THREADS_ENABLED
  131. #define G_THREADS_IMPL_POSIX
  132. #define G_ATOMIC_LOCK_FREE
  133. #define GINT16_TO_LE(val) ((gint16) (val))
  134. #define GUINT16_TO_LE(val) ((guint16) (val))
  135. #define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
  136. #define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
  137. #define GINT32_TO_LE(val) ((gint32) (val))
  138. #define GUINT32_TO_LE(val) ((guint32) (val))
  139. #define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
  140. #define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
  141. #define GINT64_TO_LE(val) ((gint64) (val))
  142. #define GUINT64_TO_LE(val) ((guint64) (val))
  143. #define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
  144. #define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
  145. #define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val))
  146. #define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val))
  147. #define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val))
  148. #define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val))
  149. #define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
  150. #define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
  151. #define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
  152. #define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
  153. #define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val))
  154. #define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val))
  155. #define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val))
  156. #define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val))
  157. #define G_BYTE_ORDER G_LITTLE_ENDIAN
  158. #define GLIB_SYSDEF_POLLIN =1
  159. #define GLIB_SYSDEF_POLLOUT =4
  160. #define GLIB_SYSDEF_POLLPRI =2
  161. #define GLIB_SYSDEF_POLLHUP =16
  162. #define GLIB_SYSDEF_POLLERR =8
  163. #define GLIB_SYSDEF_POLLNVAL =32
  164. #define G_MODULE_SUFFIX "so"
  165. typedef int GPid;
  166. #define GLIB_SYSDEF_AF_UNIX 1
  167. #define GLIB_SYSDEF_AF_INET 2
  168. #define GLIB_SYSDEF_AF_INET6 10
  169. #define GLIB_SYSDEF_MSG_OOB 1
  170. #define GLIB_SYSDEF_MSG_PEEK 2
  171. #define GLIB_SYSDEF_MSG_DONTROUTE 4
  172. G_END_DECLS
  173. #endif /* __GLIBCONFIG_H__ */