summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-xml.h
diff options
context:
space:
mode:
authorGravatar m0gg2006-12-03 17:30:57 +0000
committerGravatar m0gg2006-12-03 17:30:57 +0000
commitc489665ace13d32f4959904b0215ed1021d0acf6 (patch)
tree7c9b3eb4d4d236a38e53be53d606c184b7192988 /libcsoap/soap-xml.h
parent60881bf7b91a87d12d0b2e694a6aa0db0b8b6fda (diff)
downloadcsoap-c489665ace13d32f4959904b0215ed1021d0acf6.tar.gz
csoap-c489665ace13d32f4959904b0215ed1021d0acf6.tar.bz2
Error codes moved
Diffstat (limited to 'libcsoap/soap-xml.h')
-rw-r--r--libcsoap/soap-xml.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/libcsoap/soap-xml.h b/libcsoap/soap-xml.h
index e7167b2..c03c6ea 100644
--- a/libcsoap/soap-xml.h
+++ b/libcsoap/soap-xml.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-xml.h,v 1.11 2006/11/23 15:27:33 m0gg Exp $
+ * $Id: soap-xml.h,v 1.12 2006/12/03 17:30:57 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -24,6 +24,15 @@
#ifndef __csoap_xml_h
#define __csoap_xml_h
+/**
+ *
+ * XML Errors
+ *
+ */
+#define XML_ERROR 1600
+#define XML_ERROR_EMPTY_DOCUMENT (XML_ERROR + 1)
+#define XML_ERROR_PARSE (XML_ERROR + 2)
+
static const char * const soap_env_enc = "http://schemas.xmlsoap.org/soap/encoding/";
static const char * const soap_xsi_ns = "http://www.w3.org/1999/XMLSchema-instance";
static const char * const soap_xsd_ns = "http://www.w3.org/1999/XMLSchema";