1 /* LIBGIMP - The GIMP Library
2 * Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
3 *
4 * Config file serialization and deserialization interface
5 * Copyright (C) 2001-2002 Sven Neumann <sven@gimp.org>
6 *
7 * This library is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library. If not, see
19 * <https://www.gnu.org/licenses/>.
20 */
21
22 #include "config.h"
23
24 #include <glib.h>
25
26 #include "gimpconfig-error.h"
27
28
29 /**
30 * SECTION: gimpconfig-error
31 * @title: GimpConfig-error
32 * @short_description: Error utils for libgimpconfig.
33 *
34 * Error utils for libgimpconfig.
35 **/
36
37
38 /**
39 * gimp_config_error_quark:
40 *
41 * This function is never called directly. Use GIMP_CONFIG_ERROR() instead.
42 *
43 * Return value: the #GQuark that defines the GimpConfig error domain.
44 *
45 * Since: 2.4
46 **/
47 GQuark
gimp_config_error_quark(void)48 gimp_config_error_quark (void)
49 {
50 return g_quark_from_static_string ("gimp-config-error-quark");
51 }
52