summaryrefslogtreecommitdiff
path: root/saedit/xml.h
diff options
context:
space:
mode:
authorVasily_Makarov <danilka.pro@gmail.com>2012-02-09 12:07:10 +0400
committerVasily_Makarov <danilka.pro@gmail.com>2012-02-09 12:07:10 +0400
commitcc459a0b40bb56f6559c855ecb5b956b9ee6a90b (patch)
tree8698d1e99eec34b24f14f21c176871b88863fa18 /saedit/xml.h
parent6545f58904d754db19800a1cd21f472eb13339bd (diff)
downloadtools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.tar.gz
tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.tar.bz2
tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.tar.xz
tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.zip
SAE: Changed error structure
Diffstat (limited to 'saedit/xml.h')
-rw-r--r--saedit/xml.h12
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);