Add support for G_TYPE_INT64 and storing it in GValue (Patch from Mathieu

Wed Oct  3 16:02:24 2001  Owen Taylor  <otaylor@redhat.com>

	* glib-genmarshal.c gparamspecs.[ch] gvalue.h
        gobject/gvaluetypes.[ch]: Add support for G_TYPE_INT64
	and storing it in GValue (Patch from Mathieu Lacage, #59254.)
This commit is contained in:
Owen Taylor
2001-10-03 20:14:21 +00:00
committed by Owen Taylor
parent 00f672eac5
commit 791bfecb79
8 changed files with 162 additions and 2 deletions

View File

@@ -50,6 +50,10 @@ struct _GValue
guint v_uint;
glong v_long;
gulong v_ulong;
#ifdef G_HAVE_GINT64
gint64 v_int64;
guint64 v_uint64;
#endif /* G_HAVE_GINT64 */
gfloat v_float;
gdouble v_double;
gpointer v_pointer;