diff options
Diffstat (limited to 'saedit/xml.h')
-rw-r--r-- | saedit/xml.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/saedit/xml.h b/saedit/xml.h index 2f5bc2b..584c568 100644 --- a/saedit/xml.h +++ b/saedit/xml.h @@ -16,17 +16,17 @@ #include "common.h" typedef struct { - gchar *name; - gchar *text; - gchar **attributes; - int line_number; - GList *sub_nodes; + gchar *name; + gchar *text; + gchar **attributes; + int line_number; + GList *sub_nodes; } XMLNode; XMLNode *xml_parse_file (const gchar *name); -XMLNode *xml_parse_buffer (const gchar *buffer); +XMLNode *xml_parse_buffer (const gchar *buffer, GError **error); void xml_free (XMLNode *node); |