gvaluecollector.h   gvaluecollector.h 
skipping to change at line 53 skipping to change at line 53
*/ */
enum /*< skip >*/ enum /*< skip >*/
{ {
G_VALUE_COLLECT_INT = 'i', G_VALUE_COLLECT_INT = 'i',
G_VALUE_COLLECT_LONG = 'l', G_VALUE_COLLECT_LONG = 'l',
G_VALUE_COLLECT_INT64 = 'q', G_VALUE_COLLECT_INT64 = 'q',
G_VALUE_COLLECT_DOUBLE = 'd', G_VALUE_COLLECT_DOUBLE = 'd',
G_VALUE_COLLECT_POINTER = 'p' G_VALUE_COLLECT_POINTER = 'p'
}; };
/* vararg union holding actuall values collected /* vararg union holding actual values collected
*/ */
/** /**
* GTypeCValue: * GTypeCValue:
* @v_int: the field for holding integer values
* @v_long: the field for holding long integer values
* @v_int64: the field for holding 64 bit integer values
* @v_double: the field for holding floating point values
* @v_pointer: the field for holding pointers
* *
* A union holding one collected value. * A union holding one collected value.
*/ */
union _GTypeCValue union _GTypeCValue
{ {
gint v_int; gint v_int;
glong v_long; glong v_long;
gint64 v_int64; gint64 v_int64;
gdouble v_double; gdouble v_double;
gpointer v_pointer; gpointer v_pointer;
 End of changes. 2 change blocks. 
1 lines changed or deleted 6 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/