summaryrefslogtreecommitdiff
path: root/bindings/xml/xmlerror.h
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/xml/xmlerror.h')
-rw-r--r--bindings/xml/xmlerror.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/bindings/xml/xmlerror.h b/bindings/xml/xmlerror.h
new file mode 100644
index 0000000..f407e45
--- /dev/null
+++ b/bindings/xml/xmlerror.h
@@ -0,0 +1,19 @@
+/*
+ * This file is part of libdom.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#ifndef xml_xmlerror_h_
+#define xml_xmlerror_h_
+
+typedef enum {
+ XML_OK = 0,
+
+ XML_NOMEM = 1,
+
+ XML_LIBXML_ERR = (1<<16),
+} xml_error;
+
+#endif