mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Patch for 64-bit Windows from Richard Hult.
2008-07-24 Tor Lillqvist <tml@novell.com> * glibconfig.h.win32.in: Patch for 64-bit Windows from Richard Hult. svn path=/trunk/; revision=7245
This commit is contained in:
parent
7df58dc393
commit
8d4242580e
@ -1,3 +1,8 @@
|
||||
2008-07-24 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* glibconfig.h.win32.in: Patch for 64-bit Windows from Richard
|
||||
Hult.
|
||||
|
||||
2008-07-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
544088 – option_test_LDADD is left in tests/Makefile.am
|
||||
|
@ -64,6 +64,24 @@ typedef unsigned __int64 guint64;
|
||||
#define G_GINT64_FORMAT "I64i"
|
||||
#define G_GUINT64_FORMAT "I64u"
|
||||
|
||||
#if defined(_M_X64) || defined(_M_AMD64)
|
||||
|
||||
#define GLIB_SIZEOF_VOID_P 8
|
||||
#define GLIB_SIZEOF_LONG 4
|
||||
#define GLIB_SIZEOF_SIZE_T 8
|
||||
|
||||
typedef signed long long gssize;
|
||||
typedef unsigned long long gsize;
|
||||
#define G_GSIZE_MODIFIER "I64"
|
||||
#define G_GSSIZE_FORMAT "I64d"
|
||||
#define G_GSIZE_FORMAT "I64u"
|
||||
|
||||
#define G_MAXSIZE G_MAXUINT64
|
||||
#define G_MINSSIZE G_MININT64
|
||||
#define G_MAXSSIZE G_MAXINT64
|
||||
|
||||
#else
|
||||
|
||||
#define GLIB_SIZEOF_VOID_P 4
|
||||
#define GLIB_SIZEOF_LONG 4
|
||||
#define GLIB_SIZEOF_SIZE_T 4
|
||||
@ -78,6 +96,8 @@ typedef unsigned int gsize;
|
||||
#define G_MINSSIZE G_MININT
|
||||
#define G_MAXSSIZE G_MAXINT
|
||||
|
||||
#endif
|
||||
|
||||
typedef gint64 goffset;
|
||||
#define G_MINOFFSET G_MININT64
|
||||
#define G_MAXOFFSET G_MAXINT64
|
||||
|
Loading…
Reference in New Issue
Block a user