register_static


Description:

public static Type register_static (string name, EnumValue[] const_static_values)

Registers a new static enumeration type with the name name.

It is normally more convenient to let glib-mkenums, generate a my_enum_get_type function from a usual C enumeration definition than to write one yourself using register_static.

Parameters:

name

A nul-terminated string used as the name of the new type.

const_static_values

An array of EnumValue structs for the possible enumeration values. The array is terminated by a struct with all members being 0. GObject keeps a reference to the data, so it cannot be stack-allocated.

Returns:

The new type identifier.