File indexing completed on 2025-01-30 10:12:09
0001
0002
0003
0004 #ifndef __JSON_ENUM_TYPES_H__
0005 #define __JSON_ENUM_TYPES_H__
0006
0007 #if !defined(__JSON_GLIB_INSIDE__) && !defined(JSON_COMPILATION)
0008 #error "Only <json-glib/json-glib.h> can be included directly."
0009 #endif
0010
0011 #include <glib-object.h>
0012 #include <json-glib/json-version-macros.h>
0013
0014 G_BEGIN_DECLS
0015
0016 JSON_AVAILABLE_IN_1_0
0017 GType json_parser_error_get_type (void) G_GNUC_CONST;
0018 #define JSON_TYPE_PARSER_ERROR (json_parser_error_get_type())
0019
0020 JSON_AVAILABLE_IN_1_0
0021 GType json_path_error_get_type (void) G_GNUC_CONST;
0022 #define JSON_TYPE_PATH_ERROR (json_path_error_get_type())
0023
0024 JSON_AVAILABLE_IN_1_0
0025 GType json_reader_error_get_type (void) G_GNUC_CONST;
0026 #define JSON_TYPE_READER_ERROR (json_reader_error_get_type())
0027
0028 JSON_AVAILABLE_IN_1_0
0029 GType json_node_type_get_type (void) G_GNUC_CONST;
0030 #define JSON_TYPE_NODE_TYPE (json_node_type_get_type())
0031 G_END_DECLS
0032
0033 #endif
0034
0035
0036