diff options
author | Stefano Karapetsas <[email protected]> | 2013-07-24 13:15:17 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-07-24 13:15:17 +0200 |
commit | c153a73e44d761f85c806b082e1fb349331b91bb (patch) | |
tree | 9a85faf42e630578c77700f24af175702d78f53a /libmate-desktop/mate-gsettings.h | |
parent | 0ce1c49df08fc1afcdb33beea7b942c67ca9d850 (diff) | |
download | mate-desktop-c153a73e44d761f85c806b082e1fb349331b91bb.tar.bz2 mate-desktop-c153a73e44d761f85c806b082e1fb349331b91bb.tar.xz |
Add utilities for GSettings
Diffstat (limited to 'libmate-desktop/mate-gsettings.h')
-rw-r--r-- | libmate-desktop/mate-gsettings.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/libmate-desktop/mate-gsettings.h b/libmate-desktop/mate-gsettings.h new file mode 100644 index 0000000..f4a9d2c --- /dev/null +++ b/libmate-desktop/mate-gsettings.h @@ -0,0 +1,36 @@ +/* + * mate-gsettings.h: helper API for GSettings + * + * Copyright (C) 2013 Stefano Karapetsas + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301, USA. + * + * Authors: + * Stefano Karapetsas <[email protected]> + */ + +#ifndef __MATE_GSETTINGS_H__ +#define __MATE_GSETTINGS_H__ + +#include <glib.h> + +G_BEGIN_DECLS + +gboolean mate_gsettings_schema_exists (const gchar* schema); + +G_END_DECLS + +#endif /* __MATE_GSETTINGS_H__ */ |