Struct

GObjectTypeCValue

Description [src]

union GTypeCValue {
  gint v_int;
  glong v_long;
  gint64 v_int64;
  gdouble v_double;
  gpointer v_pointer;
}

A union holding one collected value.

Structure members
v_int: gint

The field for holding integer values.

v_long: glong

The field for holding long integer values.

v_int64: gint64

The field for holding 64 bit integer values.

v_double: gdouble

The field for holding floating point values.

v_pointer: gpointer

The field for holding pointers.