1/*
2 * Copyright © 2019 Benjamin Otte
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Authors: Benjamin Otte <otte@gnome.org>
18 */
19
20
21#ifndef __GTK_CSS_ERROR_H__
22#define __GTK_CSS_ERROR_H__
23
24#include <glib.h>
25#include <gdk/gdkversionmacros.h>
26
27G_BEGIN_DECLS
28
29/**
30 * GTK_CSS_PARSER_ERROR:
31 *
32 * Domain for `GtkCssParser` errors.
33 */
34#define GTK_CSS_PARSER_ERROR (gtk_css_parser_error_quark ())
35
36GDK_AVAILABLE_IN_ALL
37GQuark gtk_css_parser_error_quark (void);
38
39/**
40 * GTK_CSS_PARSER_WARNING:
41 *
42 * Domain for `GtkCssParser` warnings.
43 */
44#define GTK_CSS_PARSER_WARNING (gtk_css_parser_warning_quark ())
45
46GDK_AVAILABLE_IN_ALL
47GQuark gtk_css_parser_warning_quark (void);
48
49G_END_DECLS
50
51#endif /* __GTK_CSS_ERROR_H__ */
52

source code of gtk/gtk/css/gtkcsserror.h