[kdbus] sync with kdbus (kdbus.h - commit: 5ae1ecac44cb)
[platform/upstream/glib.git] / glib / 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 #define G_GINTPTR_MODIFIER      ""
126 #define G_GINTPTR_FORMAT        "i"
127 #define G_GUINTPTR_FORMAT       "u"
128
129 #else
130
131 #define GPOINTER_TO_INT(p)      ((gint)  (gint64) (p))
132 #define GPOINTER_TO_UINT(p)     ((guint) (guint64) (p))
133
134 #define GINT_TO_POINTER(i)      ((gpointer) (gint64) (i))
135 #define GUINT_TO_POINTER(u)     ((gpointer) (guint64) (u))
136
137 #ifndef _MSC_VER
138 typedef signed long long gintptr;
139 typedef unsigned long long guintptr;
140 #else
141 typedef signed __int64 gintptr;
142 typedef unsigned __int64 guintptr;
143 #endif
144
145 #define G_GINTPTR_MODIFIER      "I64"
146 #define G_GINTPTR_FORMAT        "I64i"
147 #define G_GUINTPTR_FORMAT       "I64u"
148
149 #endif
150
151 #define g_ATEXIT(proc)  (atexit (proc))
152
153 #define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
154
155 #define GLIB_MAJOR_VERSION @GLIB_MAJOR_VERSION@
156 #define GLIB_MINOR_VERSION @GLIB_MINOR_VERSION@
157 #define GLIB_MICRO_VERSION @GLIB_MICRO_VERSION@
158
159 #define G_OS_WIN32
160 #define G_PLATFORM_WIN32
161 @GLIB_WIN32_STATIC_COMPILATION_DEFINE@
162
163 #ifndef _MSC_VER
164 #define G_VA_COPY       va_copy
165 #endif /* not _MSC_VER */
166
167 #ifdef  __cplusplus
168 #define G_HAVE_INLINE   1
169 #else   /* !__cplusplus */
170 #ifndef _MSC_VER
171 #define G_HAVE_INLINE 1
172 #endif /* _MSC_VER */
173 #define G_HAVE___INLINE 1
174 #if !defined(_MSC_VER) && !defined(__DMC__)
175 #define G_HAVE___INLINE__ 1
176 #endif /* !_MSC_VER and !__DMC__ */
177 #endif  /* !__cplusplus */
178
179 #define G_CAN_INLINE    1
180
181 #ifndef _MSC_VER
182 #define G_HAVE_ISO_VARARGS 1
183
184 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
185  * is passed ISO vararg support is turned off, and there is no work
186  * around to turn it on, so we unconditionally turn it off.
187  */
188 #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
189 #  undef G_HAVE_ISO_VARARGS
190 #endif
191
192 #define G_HAVE_GNUC_VARARGS 1
193 #else /* _MSC_VER */
194 /* varargs macros available since msvc8 (vs2005) */
195 #  if _MSC_VER >= 1400
196 #    define G_HAVE_ISO_VARARGS 1
197 #   endif
198 #endif /* not _MSC_VER */
199 #define G_HAVE_GROWING_STACK 0
200
201 #define G_GNUC_INTERNAL
202
203 #define G_THREADS_ENABLED
204 #define G_THREADS_IMPL_WIN32
205
206 #define G_ATOMIC_LOCK_FREE
207
208 #define GINT16_TO_LE(val)       ((gint16) (val))
209 #define GUINT16_TO_LE(val)      ((guint16) (val))
210 #define GINT16_TO_BE(val)       ((gint16) GUINT16_SWAP_LE_BE (val))
211 #define GUINT16_TO_BE(val)      (GUINT16_SWAP_LE_BE (val))
212 #define GINT32_TO_LE(val)       ((gint32) (val))
213 #define GUINT32_TO_LE(val)      ((guint32) (val))
214 #define GINT32_TO_BE(val)       ((gint32) GUINT32_SWAP_LE_BE (val))
215 #define GUINT32_TO_BE(val)      (GUINT32_SWAP_LE_BE (val))
216 #define GINT64_TO_LE(val)       ((gint64) (val))
217 #define GUINT64_TO_LE(val)      ((guint64) (val))
218 #define GINT64_TO_BE(val)       ((gint64) GUINT64_SWAP_LE_BE (val))
219 #define GUINT64_TO_BE(val)      (GUINT64_SWAP_LE_BE (val))
220 #define GLONG_TO_LE(val)        ((glong) GINT32_TO_LE (val))
221 #define GULONG_TO_LE(val)       ((gulong) GUINT32_TO_LE (val))
222 #define GLONG_TO_BE(val)        ((glong) GINT32_TO_BE (val))
223 #define GULONG_TO_BE(val)       ((gulong) GUINT32_TO_BE (val))
224 #define GINT_TO_LE(val)         ((gint) GINT32_TO_LE (val))
225 #define GUINT_TO_LE(val)        ((guint) GUINT32_TO_LE (val))
226 #define GINT_TO_BE(val)         ((gint) GINT32_TO_BE (val))
227 #define GUINT_TO_BE(val)        ((guint) GUINT32_TO_BE (val))
228 #define GSIZE_TO_LE(val)        ((gsize) GUINT32_TO_LE (val))
229 #define GSSIZE_TO_LE(val)       ((gssize) GINT32_TO_LE (val))
230 #define GSIZE_TO_BE(val)        ((gsize) GUINT32_TO_BE (val))
231 #define GSSIZE_TO_BE(val)       ((gssize) GINT32_TO_BE (val))
232 #define G_BYTE_ORDER G_LITTLE_ENDIAN
233
234 #define GLIB_SYSDEF_POLLIN =1
235 #define GLIB_SYSDEF_POLLOUT =4
236 #define GLIB_SYSDEF_POLLPRI =2
237 #define GLIB_SYSDEF_POLLHUP =16
238 #define GLIB_SYSDEF_POLLERR =8
239 #define GLIB_SYSDEF_POLLNVAL =32
240
241 #define G_MODULE_SUFFIX "dll"
242
243 /* A GPid is an abstraction for a process "handle". It is *not* an
244  * abstraction for a process identifier in general. GPid is used in
245  * GLib only for descendant processes spawned with the g_spawn*
246  * functions. On POSIX there is no "process handle" concept as such,
247  * but on Windows a GPid is a handle to a process, a kind of pointer,
248  * not a process identifier.
249  */
250 typedef void * GPid;
251
252 #define GLIB_SYSDEF_AF_UNIX 1
253 #define GLIB_SYSDEF_AF_INET 2
254 #define GLIB_SYSDEF_AF_INET6 23
255
256 #define GLIB_SYSDEF_MSG_OOB       1
257 #define GLIB_SYSDEF_MSG_PEEK      2
258 #define GLIB_SYSDEF_MSG_DONTROUTE 4
259
260 G_END_DECLS
261
262 #endif /* GLIBCONFIG_H */