Update to match what configure produces.

2007-08-01  Tor Lillqvist  <tml@novell.com>

	* glibconfig.h.win32.in: Update to match what configure produces.


svn path=/trunk/; revision=5660
This commit is contained in:
Tor Lillqvist 2007-08-01 09:46:08 +00:00 committed by Tor Lillqvist
parent d966e93faf
commit 164f21f66e
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-08-01 Tor Lillqvist <tml@novell.com>
* glibconfig.h.win32.in: Update to match what configure produces.
2007-07-31 Matthias Clasen <mclasen@redhat.com>
* glib/pcre/*: Update the internal PCRE to 7.2

View File

@ -75,6 +75,13 @@ typedef unsigned int gsize;
#define G_GSIZE_FORMAT "u"
#define G_MAXSIZE G_MAXUINT
#define G_MINSSIZE G_MININT
#define G_MAXSSIZE G_MAXINT
typedef gint64 goffset;
#define G_MINOFFSET G_MININT64
#define G_MAXOFFSET G_MAXINT64
#define GPOINTER_TO_INT(p) ((gint) (p))
#define GPOINTER_TO_UINT(p) ((guint) (p))