gssize and gsize as in a configure-produced glibconfig.h.

2002-05-17  Tor Lillqvist  <tml@iki.fi>

	* glibconfig.h.win32.in: gssize and gsize as in a
	configure-produced glibconfig.h.
This commit is contained in:
Tor Lillqvist 2002-05-17 21:07:59 +00:00 committed by Tor Lillqvist
parent 0f58e35c58
commit 24d064ef8f
8 changed files with 23 additions and 2 deletions

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -3,6 +3,9 @@
* config.h.win32.in: Match new additions in a configure-produced * config.h.win32.in: Match new additions in a configure-produced
config.h. config.h.
* glibconfig.h.win32.in: gssize and gsize as in a
configure-produced glibconfig.h.
* glib/glib.def: Add new functions. * glib/glib.def: Add new functions.
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com> Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>

View File

@ -64,8 +64,8 @@ typedef unsigned __int64 guint64;
#define GLIB_SIZEOF_LONG 4 #define GLIB_SIZEOF_LONG 4
#define GLIB_SIZEOF_SIZE_T 4 #define GLIB_SIZEOF_SIZE_T 4
typedef gint32 gssize; typedef signed int gssize;
typedef guint32 gsize; typedef unsigned int gsize;
#define GPOINTER_TO_INT(p) ((gint) (p)) #define GPOINTER_TO_INT(p) ((gint) (p))
#define GPOINTER_TO_UINT(p) ((guint) (p)) #define GPOINTER_TO_UINT(p) ((guint) (p))