diff options
Diffstat (limited to 'libmate-desktop/mate-gsettings.h')
-rw-r--r-- | libmate-desktop/mate-gsettings.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libmate-desktop/mate-gsettings.h b/libmate-desktop/mate-gsettings.h index f4a9d2c..8b6dd30 100644 --- a/libmate-desktop/mate-gsettings.h +++ b/libmate-desktop/mate-gsettings.h @@ -26,11 +26,22 @@ #define __MATE_GSETTINGS_H__ #include <glib.h> +#include <gio/gio.h> G_BEGIN_DECLS gboolean mate_gsettings_schema_exists (const gchar* schema); +gboolean mate_gsettings_append_strv (GSettings *settings, + const gchar *key, + const gchar *value); + +gboolean mate_gsettings_remove_all_from_strv (GSettings *settings, + const gchar *key, + const gchar *value); + +GSList* mate_gsettings_strv_to_gslist (const gchar *const *array); + G_END_DECLS #endif /* __MATE_GSETTINGS_H__ */ |