Method

GObjectValueArrayappend

deprecated: 2.32 

Declaration

GValueArray*
g_value_array_append (
  GValueArray* value_array,
  const GValue* value
)

Description

Insert a copy of value as last element of value_array. If value is NULL, an uninitialized value is appended.

Deprecated since: 2.32

Use GArray and g_array_append_val() instead.

Parameters

value

Type: GValue

GValue to copy into GValueArray, or NULL.

The argument can be NULL.
The data is owned by the caller of the function.

Return value

Type: GValueArray

The GValueArray passed in as value_array.

The data is owned by the instance.