initial commit
[gconf-editor] / src / gconf-policykit.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2008 Vincent Untz <vuntz@gnome.org>
4  *
5  * Based on set-timezone.h from gnome-panel which was GPLv2+ with this
6  * copyright:
7  *    Copyright (C) 2007 David Zeuthen <david@fubar.dk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  *
23  */
24
25 #ifndef  __GCONF_POLICYKIT_H__
26 #define  __GCONF_POLICYKIT_H__
27
28 #include <glib.h>
29
30 gint     gconf_pk_can_set_default    (const gchar *key);
31
32 gint     gconf_pk_can_set_mandatory  (const gchar *key);
33
34 void     gconf_pk_set_default_async  (const gchar    *key,
35                                       GFunc           callback,
36                                       gpointer        data,
37                                       GDestroyNotify  notify);
38
39 void     gconf_pk_set_mandatory_async (const gchar    *key,
40                                        GFunc           callback,
41                                        gpointer        data,
42                                        GDestroyNotify  notify);
43
44 #endif /* __GCONF_POLICYKIT_H__ */