One more
[platform/upstream/glib.git] / glibconfig.h.win32.in
1 /* glibconfig.h.win32.in Merged from two versions generated by configure for gcc and MSVC.  */
2 /* glibconfig.h
3  *
4  * This is a generated file.  Please modify 'configure.in'
5  */
6
7 #ifndef __G_LIBCONFIG_H__
8 #define __G_LIBCONFIG_H__
9
10 #include <glib/gmacros.h>
11
12 #include <limits.h>
13 #include <float.h>
14
15 G_BEGIN_DECLS
16
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
31 typedef signed char gint8;
32 typedef unsigned char guint8;
33 typedef signed short gint16;
34 typedef unsigned short guint16;
35 #define G_GINT16_MODIFIER "h"
36 #define G_GINT16_FORMAT "hi"
37 #define G_GUINT16_FORMAT "hu"
38 typedef signed int gint32;
39 typedef unsigned int guint32;
40 #define G_GINT32_MODIFIER ""
41 #define G_GINT32_FORMAT "i"
42 #define G_GUINT32_FORMAT "u"
43 #define G_HAVE_GINT64 1          /* deprecated, always true */
44
45 #ifndef _MSC_VER
46 G_GNUC_EXTENSION typedef signed long long gint64;
47 G_GNUC_EXTENSION typedef unsigned long long guint64;
48 #else /* _MSC_VER */
49 typedef signed __int64 gint64;
50 typedef unsigned __int64 guint64;
51 #endif /* _MSC_VER */
52
53 #ifndef _MSC_VER
54 #define G_GINT64_CONSTANT(val)  (G_GNUC_EXTENSION (val##LL))
55 #else /* _MSC_VER */
56 #define G_GINT64_CONSTANT(val)  (val##i64)
57 #endif /* _MSC_VER */
58 #define G_GINT64_MODIFIER "I64"
59 #define G_GINT64_FORMAT "I64i"
60 #define G_GUINT64_FORMAT "I64u"
61
62 #define GLIB_SIZEOF_VOID_P 4
63 #define GLIB_SIZEOF_LONG   4
64 #define GLIB_SIZEOF_SIZE_T 4
65
66 typedef signed int gssize;
67 typedef unsigned int gsize;
68 #define G_GSIZE_MODIFIER ""
69 #define G_GSSIZE_FORMAT "i"
70 #define G_GSIZE_FORMAT "u"
71
72 #define G_MAXSIZE       G_MAXUINT
73
74 #define GPOINTER_TO_INT(p)      ((gint)   (p))
75 #define GPOINTER_TO_UINT(p)     ((guint)  (p))
76
77 #define GINT_TO_POINTER(i)      ((gpointer)  (i))
78 #define GUINT_TO_POINTER(u)     ((gpointer)  (u))
79
80 #ifdef NeXT /* @#%@! NeXTStep */
81 # define g_ATEXIT(proc) (!atexit (proc))
82 #else
83 # define g_ATEXIT(proc) (atexit (proc))
84 #endif
85
86 #define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
87
88 #define GLIB_MAJOR_VERSION @GLIB_MAJOR_VERSION@
89 #define GLIB_MINOR_VERSION @GLIB_MINOR_VERSION@
90 #define GLIB_MICRO_VERSION @GLIB_MICRO_VERSION@
91
92 #define G_OS_WIN32
93 #define G_PLATFORM_WIN32
94
95 #ifndef _MSC_VER
96 #define G_VA_COPY       va_copy
97 #endif /* not _MSC_VER */
98
99 #ifdef  __cplusplus
100 #define G_HAVE_INLINE   1
101 #else   /* !__cplusplus */
102 #ifndef _MSC_VER
103 #define G_HAVE_INLINE 1
104 #endif /* _MSC_VER */
105 #define G_HAVE___INLINE 1
106 #ifndef _MSC_VER
107 #define G_HAVE___INLINE__ 1
108 #endif /* not _MSC_VER */
109 #endif  /* !__cplusplus */
110
111 #ifdef  __cplusplus
112 #define G_CAN_INLINE    1
113 #else   /* !__cplusplus */
114 #ifndef _MSC_VER
115 #define G_CAN_INLINE    1
116 #endif
117 #endif
118
119 #ifndef _MSC_VER
120 #ifndef __cplusplus
121 # define G_HAVE_ISO_VARARGS 1
122 #endif
123 #ifdef __cplusplus
124 # define G_HAVE_ISO_VARARGS 1
125 #endif
126
127 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
128  * is passed ISO vararg support is turned off, and there is no work
129  * around to turn it on, so we unconditionally turn it off.
130  */
131 #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
132 #  undef G_HAVE_ISO_VARARGS
133 #endif
134
135 #define G_HAVE_GNUC_VARARGS 1
136 #endif /* not _MSC_VER */
137 #define G_HAVE_GROWING_STACK 0
138
139 #define G_GNUC_INTERNAL
140
141 #define G_THREADS_ENABLED
142 #define G_THREADS_IMPL_WIN32
143 typedef struct _GMutex* GStaticMutex;
144 #define G_STATIC_MUTEX_INIT NULL
145 #define g_static_mutex_get_mutex(mutex) \
146   (g_static_mutex_get_mutex_impl_shortcut (mutex))
147 /* This represents a system thread as used by the implementation. An
148  * alien implementaion, as loaded by g_thread_init can only count on
149  * "sizeof (gpointer)" bytes to store their info. We however need more
150  * for some of our native implementations. */
151 typedef union _GSystemThread GSystemThread;
152 union _GSystemThread
153 {
154   char   data[4];
155   double dummy_double;
156   void  *dummy_pointer;
157   long   dummy_long;
158 };
159
160 #define GINT16_TO_LE(val)       ((gint16) (val))
161 #define GUINT16_TO_LE(val)      ((guint16) (val))
162 #define GINT16_TO_BE(val)       ((gint16) GUINT16_SWAP_LE_BE (val))
163 #define GUINT16_TO_BE(val)      (GUINT16_SWAP_LE_BE (val))
164 #define GINT32_TO_LE(val)       ((gint32) (val))
165 #define GUINT32_TO_LE(val)      ((guint32) (val))
166 #define GINT32_TO_BE(val)       ((gint32) GUINT32_SWAP_LE_BE (val))
167 #define GUINT32_TO_BE(val)      (GUINT32_SWAP_LE_BE (val))
168 #define GINT64_TO_LE(val)       ((gint64) (val))
169 #define GUINT64_TO_LE(val)      ((guint64) (val))
170 #define GINT64_TO_BE(val)       ((gint64) GUINT64_SWAP_LE_BE (val))
171 #define GUINT64_TO_BE(val)      (GUINT64_SWAP_LE_BE (val))
172 #define GLONG_TO_LE(val)        ((glong) GINT32_TO_LE (val))
173 #define GULONG_TO_LE(val)       ((gulong) GUINT32_TO_LE (val))
174 #define GLONG_TO_BE(val)        ((glong) GINT32_TO_BE (val))
175 #define GULONG_TO_BE(val)       ((gulong) GUINT32_TO_BE (val))
176 #define GINT_TO_LE(val)         ((gint) GINT32_TO_LE (val))
177 #define GUINT_TO_LE(val)        ((guint) GUINT32_TO_LE (val))
178 #define GINT_TO_BE(val)         ((gint) GINT32_TO_BE (val))
179 #define GUINT_TO_BE(val)        ((guint) GUINT32_TO_BE (val))
180 #define G_BYTE_ORDER G_LITTLE_ENDIAN
181
182 #define GLIB_SYSDEF_POLLIN =1
183 #define GLIB_SYSDEF_POLLOUT =4
184 #define GLIB_SYSDEF_POLLPRI =2
185 #define GLIB_SYSDEF_POLLHUP =16
186 #define GLIB_SYSDEF_POLLERR =8
187 #define GLIB_SYSDEF_POLLNVAL =32
188
189 #define G_MODULE_SUFFIX "dll"
190
191 typedef void * GPid;
192
193 G_END_DECLS
194
195 #endif /* GLIBCONFIG_H */