Function
GLibVariantTypenew_tuple
Declaration [src]
GVariantType*
g_variant_type_new_tuple (
  const GVariantType* const* items,
  gint length
)
Description [src]
Constructs a new tuple type, from items.
length is the number of items in items, or -1 to indicate that
items is NULL-terminated.
It is appropriate to call g_variant_type_free() on the return value.
Parameters
- items
- 
            Type: An array of GVariantType*An array of types, one for each item. The length of the array is specified in the lengthargument.The data is owned by the caller of the function. 
- length
- 
            Type: gintThe length of items, or-1.
Return value
Type: GVariantType
A new tuple type Since 2.24.
| The caller of the function takes ownership of the data, and is responsible for freeing it. |