Export g_charset_converter_get_num_fallbacks in header
[dana/cg-glib.git] / glibconfig.h.win32.in
1 /* glibconfig.h.win32.in. Originally merged from two versions of
2  * glibconfig.h, generated by the GLib configure script, for gcc and
3  * MSVC.
4  */
5
6 /* glibconfig.h
7  *
8  * This is a generated file.  Please modify 'glibconfig.h.win32.in'
9  */
10
11 #ifndef __G_LIBCONFIG_H__
12 #define __G_LIBCONFIG_H__
13
14 #include <glib/gmacros.h>
15
16 #include <limits.h>
17 #include <float.h>
18
19 G_BEGIN_DECLS
20
21 #define G_MINFLOAT      FLT_MIN
22 #define G_MAXFLOAT      FLT_MAX
23 #define G_MINDOUBLE     DBL_MIN
24 #define G_MAXDOUBLE     DBL_MAX
25 #define G_MINSHORT      SHRT_MIN
26 #define G_MAXSHORT      SHRT_MAX
27 #define G_MAXUSHORT     USHRT_MAX
28 #define G_MININT        INT_MIN
29 #define G_MAXINT        INT_MAX
30 #define G_MAXUINT       UINT_MAX
31 #define G_MINLONG       LONG_MIN
32 #define G_MAXLONG       LONG_MAX
33 #define G_MAXULONG      ULONG_MAX
34
35 typedef signed char gint8;
36 typedef unsigned char guint8;
37 typedef signed short gint16;
38 typedef unsigned short guint16;
39 #define G_GINT16_MODIFIER "h"
40 #define G_GINT16_FORMAT "hi"
41 #define G_GUINT16_FORMAT "hu"
42 typedef signed int gint32;
43 typedef unsigned int guint32;
44 #define G_GINT32_MODIFIER ""
45 #define G_GINT32_FORMAT "i"
46 #define G_GUINT32_FORMAT "u"
47 #define G_HAVE_GINT64 1          /* deprecated, always true */
48
49 #ifndef _MSC_VER
50 G_GNUC_EXTENSION typedef signed long long gint64;
51 G_GNUC_EXTENSION typedef unsigned long long guint64;
52 #else /* _MSC_VER */
53 typedef signed __int64 gint64;
54 typedef unsigned __int64 guint64;
55 #endif /* _MSC_VER */
56
57 #ifndef _MSC_VER
58 #define G_GINT64_CONSTANT(val)  (G_GNUC_EXTENSION (val##LL))
59 #else /* _MSC_VER */
60 #define G_GINT64_CONSTANT(val)  (val##i64)
61 #endif /* _MSC_VER */
62 #ifndef _MSC_VER
63 #define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
64 #else /* _MSC_VER */
65 #define G_GUINT64_CONSTANT(val) (val##Ui64)
66 #endif /* _MSC_VER */
67 #define G_GINT64_MODIFIER "I64"
68 #define G_GINT64_FORMAT "I64i"
69 #define G_GUINT64_FORMAT "I64u"
70
71 #if defined(_WIN64) || defined(_M_X64) || defined(_M_AMD64)
72
73 #define GLIB_SIZEOF_VOID_P 8
74 #define GLIB_SIZEOF_LONG   4
75 #define GLIB_SIZEOF_SIZE_T 8
76
77 typedef signed long long gssize;
78 typedef unsigned long long gsize;
79 #define G_GSIZE_MODIFIER "I64"
80 #define G_GSSIZE_FORMAT "I64d"
81 #define G_GSIZE_FORMAT "I64u"
82
83 #define G_MAXSIZE       G_MAXUINT64
84 #define G_MINSSIZE      G_MININT64
85 #define G_MAXSSIZE      G_MAXINT64
86
87 #else
88
89 #define GLIB_SIZEOF_VOID_P 4
90 #define GLIB_SIZEOF_LONG   4
91 #define GLIB_SIZEOF_SIZE_T 4
92
93 typedef signed int gssize;
94 typedef unsigned int gsize;
95 #define G_GSIZE_MODIFIER ""
96 #define G_GSSIZE_FORMAT "i"
97 #define G_GSIZE_FORMAT "u"
98
99 #define G_MAXSIZE       G_MAXUINT
100 #define G_MINSSIZE      G_MININT
101 #define G_MAXSSIZE      G_MAXINT
102
103 #endif
104
105 typedef gint64 goffset;
106 #define G_MINOFFSET     G_MININT64
107 #define G_MAXOFFSET     G_MAXINT64
108
109 #define G_GOFFSET_MODIFIER      G_GINT64_MODIFIER
110 #define G_GOFFSET_FORMAT        G_GINT64_FORMAT
111 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
112
113
114 #ifndef _WIN64
115
116 #define GPOINTER_TO_INT(p)      ((gint)   (p))
117 #define GPOINTER_TO_UINT(p)     ((guint)  (p))
118
119 #define GINT_TO_POINTER(i)      ((gpointer)  (i))
120 #define GUINT_TO_POINTER(u)     ((gpointer)  (u))
121
122 typedef signed int gintptr;
123 typedef unsigned int guintptr;
124
125 #else
126
127 #define GPOINTER_TO_INT(p)      ((gint)  (gint64) (p))
128 #define GPOINTER_TO_UINT(p)     ((guint) (guint64) (p))
129
130 #define GINT_TO_POINTER(i)      ((gpointer) (gint64) (i))
131 #define GUINT_TO_POINTER(u)     ((gpointer) (guint64) (u))
132
133 #ifndef _MSC_VER
134 typedef signed long long gintptr;
135 typedef unsigned long long guintptr;
136 #else
137 typedef signed __int64 gintptr;
138 typedef unsigned __int64 guintptr;
139 #endif
140
141 #endif
142
143 #ifdef NeXT /* @#%@! NeXTStep */
144 # define g_ATEXIT(proc) (!atexit (proc))
145 #else
146 # define g_ATEXIT(proc) (atexit (proc))
147 #endif
148
149 #define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
150
151 #define GLIB_MAJOR_VERSION @GLIB_MAJOR_VERSION@
152 #define GLIB_MINOR_VERSION @GLIB_MINOR_VERSION@
153 #define GLIB_MICRO_VERSION @GLIB_MICRO_VERSION@
154
155 #define G_OS_WIN32
156 #define G_PLATFORM_WIN32
157 @GLIB_WIN32_STATIC_COMPILATION_DEFINE@
158
159 #ifndef _MSC_VER
160 #define G_VA_COPY       va_copy
161 #endif /* not _MSC_VER */
162
163 #ifdef  __cplusplus
164 #define G_HAVE_INLINE   1
165 #else   /* !__cplusplus */
166 #ifndef _MSC_VER
167 #define G_HAVE_INLINE 1
168 #endif /* _MSC_VER */
169 #define G_HAVE___INLINE 1
170 #if !defined(_MSC_VER) && !defined(__DMC__)
171 #define G_HAVE___INLINE__ 1
172 #endif /* !_MSC_VER and !__DMC__ */
173 #endif  /* !__cplusplus */
174
175 #define G_CAN_INLINE    1
176
177 #ifndef _MSC_VER
178 #define G_HAVE_ISO_VARARGS 1
179
180 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
181  * is passed ISO vararg support is turned off, and there is no work
182  * around to turn it on, so we unconditionally turn it off.
183  */
184 #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
185 #  undef G_HAVE_ISO_VARARGS
186 #endif
187
188 #define G_HAVE_GNUC_VARARGS 1
189 #else /* _MSC_VER */
190 /* varargs macros available since msvc8 (vs2005) */
191 #  if _MSC_VER >= 1400
192 #    define G_HAVE_ISO_VARARGS 1
193 #   endif
194 #endif /* not _MSC_VER */
195 #define G_HAVE_GROWING_STACK 0
196
197 #define G_GNUC_INTERNAL
198
199 #define G_THREADS_ENABLED
200 #define G_THREADS_IMPL_WIN32
201 typedef struct _GMutex* GStaticMutex;
202 #define G_STATIC_MUTEX_INIT NULL
203 #define g_static_mutex_get_mutex(mutex) \
204   (g_static_mutex_get_mutex_impl_shortcut (mutex))
205 /* This represents a system thread as used by the implementation. An
206  * alien implementaion, as loaded by g_thread_init can only count on
207  * "sizeof (gpointer)" bytes to store their info. We however need more
208  * for some of our native implementations. */
209 typedef union _GSystemThread GSystemThread;
210 union _GSystemThread
211 {
212 #ifndef _WIN64
213   char   data[4];
214 #else
215   char   data[8];
216 #endif
217   double dummy_double;
218   void  *dummy_pointer;
219   long   dummy_long;
220 };
221
222 #define GINT16_TO_LE(val)       ((gint16) (val))
223 #define GUINT16_TO_LE(val)      ((guint16) (val))
224 #define GINT16_TO_BE(val)       ((gint16) GUINT16_SWAP_LE_BE (val))
225 #define GUINT16_TO_BE(val)      (GUINT16_SWAP_LE_BE (val))
226 #define GINT32_TO_LE(val)       ((gint32) (val))
227 #define GUINT32_TO_LE(val)      ((guint32) (val))
228 #define GINT32_TO_BE(val)       ((gint32) GUINT32_SWAP_LE_BE (val))
229 #define GUINT32_TO_BE(val)      (GUINT32_SWAP_LE_BE (val))
230 #define GINT64_TO_LE(val)       ((gint64) (val))
231 #define GUINT64_TO_LE(val)      ((guint64) (val))
232 #define GINT64_TO_BE(val)       ((gint64) GUINT64_SWAP_LE_BE (val))
233 #define GUINT64_TO_BE(val)      (GUINT64_SWAP_LE_BE (val))
234 #define GLONG_TO_LE(val)        ((glong) GINT32_TO_LE (val))
235 #define GULONG_TO_LE(val)       ((gulong) GUINT32_TO_LE (val))
236 #define GLONG_TO_BE(val)        ((glong) GINT32_TO_BE (val))
237 #define GULONG_TO_BE(val)       ((gulong) GUINT32_TO_BE (val))
238 #define GINT_TO_LE(val)         ((gint) GINT32_TO_LE (val))
239 #define GUINT_TO_LE(val)        ((guint) GUINT32_TO_LE (val))
240 #define GINT_TO_BE(val)         ((gint) GINT32_TO_BE (val))
241 #define GUINT_TO_BE(val)        ((guint) GUINT32_TO_BE (val))
242 #define G_BYTE_ORDER G_LITTLE_ENDIAN
243
244 #define GLIB_SYSDEF_POLLIN =1
245 #define GLIB_SYSDEF_POLLOUT =4
246 #define GLIB_SYSDEF_POLLPRI =2
247 #define GLIB_SYSDEF_POLLHUP =16
248 #define GLIB_SYSDEF_POLLERR =8
249 #define GLIB_SYSDEF_POLLNVAL =32
250
251 #define G_MODULE_SUFFIX "dll"
252
253 /* A GPid is an abstraction for a process "handle". It is *not* an
254  * abstraction for a process identifier in general. GPid is used in
255  * GLib only for descendant processes spawned with the g_spawn*
256  * functions. On POSIX there is no "process handle" concept as such,
257  * but on Windows a GPid is a handle to a process, a kind of pointer,
258  * not a process identifier.
259  */
260 typedef void * GPid;
261
262 #define GLIB_SYSDEF_AF_UNIX 1
263 #define GLIB_SYSDEF_AF_INET 2
264 #define GLIB_SYSDEF_AF_INET6 23
265
266 #define GLIB_SYSDEF_MSG_OOB       1
267 #define GLIB_SYSDEF_MSG_PEEK      2
268 #define GLIB_SYSDEF_MSG_DONTROUTE 4
269
270 G_END_DECLS
271
272 #endif /* GLIBCONFIG_H */