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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#ifndef XML_H
#define XML_H
#include <stdio.h>
#include <glib.h>
#include "common.h"
typedef struct {
gchar *name;
gchar *text;
gchar **attributes;
gint line_no;
GList *sub_nodes;
} XMLNode;
XMLNode *
xml_parse_file (
const gchar *name
);
XMLNode *
xml_parse_buffer (
const gchar *buffer,
GError **error
);
void xml_free (XMLNode *node);
void xml_output (
const XMLNode *node,
GString *output
);
gchar **
xml_attr_new (
const gchar *name,
const gchar *value
);
gchar *
xml_node_get_attr_value (
const XMLNode *node,
const gchar *attr_name
);
gint
xml_node_get_int_attr_value (
const XMLNode *node,
const gchar *attr_name,
gint retval
);
gint
xml_node_get_int_attr_value_limited (
const XMLNode *node,
const gchar *attr_name,
gint retval,
gint lower,
gint upper
);
gint xml_node_compare_with_name_func(gconstpointer a, gconstpointer b);
/*
gint xml_node_compare_with_action_node_by_imageset_name_func(gconstpointer a, gconstpointer b);
gint xml_node_compare_with_attr_func(const XMLNode *node, const gchar **attr);
*/
#endif
|