1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* xfconf
*
* Copyright (c) 2007 Brian Tarricone <bjt23@cornell.edu>
*
* 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; version 2 of the License ONLY.
*
* 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __XFCONF_ERRORS_H__
#define __XFCONF_ERRORS_H__
#if !defined(LIBXFCONF_COMPILATION) && !defined(XFCONF_IN_XFCONF_H)
#error "Do not include xfconf-errors.h, as this file may change or disappear in the future. Include <xfconf/xfconf.h> instead."
#endif
#include <glib-object.h>
#define XFCONF_TYPE_ERROR (xfconf_error_get_type())
#define XFCONF_ERROR (xfconf_get_error_quark())
G_BEGIN_DECLS
typedef enum
{
XFCONF_ERROR_UNKNOWN = 0,
XFCONF_ERROR_CHANNEL_NOT_FOUND,
XFCONF_ERROR_PROPERTY_NOT_FOUND,
XFCONF_ERROR_READ_FAILURE,
XFCONF_ERROR_WRITE_FAILURE,
XFCONF_ERROR_PERMISSION_DENIED,
XFCONF_ERROR_INTERNAL_ERROR,
XFCONF_ERROR_NO_BACKEND,
XFCONF_ERROR_INVALID_PROPERTY,
XFCONF_ERROR_INVALID_CHANNEL,
} XfconfError;
GType xfconf_error_get_type(void) G_GNUC_CONST;
GQuark xfconf_get_error_quark(void);
G_END_DECLS
#endif /* __XFCONF_ERRORS_H__ */
|