Add G_GUINT64_CONSTANT.

2006-03-08  Tor Lillqvist  <tml@novell.com>

	* glibconfig.h.win32.in: Add G_GUINT64_CONSTANT.
This commit is contained in:
Tor Lillqvist 2006-03-07 23:45:30 +00:00 committed by Tor Lillqvist
parent 2430f1f039
commit f800121ed8
4 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-03-08 Tor Lillqvist <tml@novell.com>
* glibconfig.h.win32.in: Add G_GUINT64_CONSTANT.
2006-03-07 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -1,3 +1,7 @@
2006-03-08 Tor Lillqvist <tml@novell.com>
* glibconfig.h.win32.in: Add G_GUINT64_CONSTANT.
2006-03-07 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -1,3 +1,7 @@
2006-03-08 Tor Lillqvist <tml@novell.com>
* glibconfig.h.win32.in: Add G_GUINT64_CONSTANT.
2006-03-07 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -55,6 +55,11 @@ typedef unsigned __int64 guint64;
#else /* _MSC_VER */
#define G_GINT64_CONSTANT(val) (val##i64)
#endif /* _MSC_VER */
#ifndef _MSC_VER
#define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
#else /* _MSC_VER */
#define G_GUINT64_CONSTANT(val) (val##Ui64)
#endif /* _MSC_VER */
#define G_GINT64_MODIFIER "I64"
#define G_GINT64_FORMAT "I64i"
#define G_GUINT64_FORMAT "I64u"