/* * xfconf * * Copyright (c) 2007 Brian Tarricone * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; version 2 * of the License ONLY. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 instead." #endif #include #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__ */