mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
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:
parent
2430f1f039
commit
f800121ed8
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user