summaryrefslogtreecommitdiff
path: root/glibconfig.h.win32.in
diff options
context:
space:
mode:
authorHans Breuer <hans@breuer.org>2004-02-25 23:48:22 +0000
committerHans Breuer <hans@src.gnome.org>2004-02-25 23:48:22 +0000
commitfc9afe0d219ad7bb16c2ba8ce2a1e268bdd25479 (patch)
tree802577aedde2c25daa79cdbfe04fe9cd45f27775 /glibconfig.h.win32.in
parent28a267e306abd2be1997d86e7b2d9d3c567e2674 (diff)
added g_hash_table_find and a bunch of g_queue_*
2003-02-26 Hans Breuer <hans@breuer.org> * glib/glib.def : added g_hash_table_find and a bunch of g_queue_* * glib/gmain.c : make it compile on win32, child_wake_up_pipe replaced by semaphore like it is done for the other wake_up_pipe * config.h.win32.in : added HAVE_INT64_AND_I64 * glibconfig.h.win32.in : G_MAXSIZE .. G_M??INT64, and typedef for GPid * test/env-test.c : don't let the local log function collide in namespace with standard C
Diffstat (limited to 'glibconfig.h.win32.in')
-rw-r--r--glibconfig.h.win32.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/glibconfig.h.win32.in b/glibconfig.h.win32.in
index b5d2c8d0e..d4b1313f5 100644
--- a/glibconfig.h.win32.in
+++ b/glibconfig.h.win32.in
@@ -27,6 +27,11 @@ G_BEGIN_DECLS
#define G_MINLONG LONG_MIN
#define G_MAXLONG LONG_MAX
#define G_MAXULONG ULONG_MAX
+#define G_MAXSIZE UINT_MAX
+
+#define G_MININT64 G_GINT64_CONSTANT(0x8000000000000000)
+#define G_MAXINT64 G_GINT64_CONSTANT(0x7fffffffffffffff)
+#define G_MAXUINT64 G_GINT64_CONSTANT(0xffffffffffffffffU)
typedef signed char gint8;
typedef unsigned char guint8;
@@ -187,6 +192,8 @@ union _GSystemThread
#define G_MODULE_SUFFIX "dll"
+typedef int GPid;
+
G_END_DECLS
#endif /* GLIBCONFIG_H */