Method

GLibKeyFileset_double_list

since: 2.12

Declaration

void
g_key_file_set_double_list (
  GKeyFile* key_file,
  const gchar* group_name,
  const gchar* key,
  gdouble* list,
  gsize length
)

Description

Associates a list of double values with key under group_name. If key cannot be found then it is created.

Available since: 2.12

Parameters

group_name

Type: const gchar*

A group name.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
key

Type: const gchar*

A key.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
list

Type: An array of gdouble

An array of double values.

The length of the array is specified in the length argument.
The data is owned by the caller of the function.
length

Type: gsize

Number of double values in list.