/ gwsettingsexplorer.h / Functions / Description

Functions



gw_plugin_settings_explorer_init

Initializes the explorer plugin.
gint gw_plugin_settings_explorer_init ( GWSettingsModule **module);
This function initializes the explorer plugin.

Parameters
module module to store the plugin

Result: an error code.
Returns 0 when it's done.
Returns -1 when an error occured.
.


gw_settings_explorer_field_new

Creates a new GWSettingsExplorerField.
GWSettingsExplorerField * gw_settings_explorer_field_new ( void);
This function creates a new GWSettingsExplorerField

Result: a new settings explorer field.
Returns NULL when an error occured.
.


gw_settings_explorer_field_find_by_name

Searches in a table of settings explorer field one field.
GWSettingsExplorerField * gw_settings_explorer_field_find_by_name ( GWSettingsExplorerField **p, const gchar *name);
This function searches in a table of settings explorer field one field.

Parameters
p table in which search
name name of field to search

Result: the searched settings explorer field.
Returns NULL if it doesn't exist or when an error occured.
.


gw_settings_explorer_field_free

Frees a settings explorer field.
gint gw_settings_explorer_field_free ( GWSettingsExplorerField *p);
This function frees a settings explorer field.

Parameters
p settings explorer field to free

Result: an error code.
Returns 0 when it's done.
Returns -1 when an error occured.
.


gw_settings_explorer_field_freev

Frees a table of settings explorer field.
gint gw_settings_explorer_field_freev ( GWSettingsExplorerField **p);
This function frees a table of settings explorer field.

Parameters
p table of settings explorer field to free

Result: an error code.
Returns 0 when it's done.
Returns -1 when an error occured.
.