diff options
author | snowdrop | 2004-02-03 08:59:22 +0000 |
---|---|---|
committer | snowdrop | 2004-02-03 08:59:22 +0000 |
commit | 889a90340eec29e63cb7b8b8095442d5858ad7ce (patch) | |
tree | 041a9fd7635c6da7827e4c55c1fece2ed03b6281 /libcsoap/soap-xml.h | |
parent | b3ecb22603e9187725810d1e1616fec01c5c063b (diff) | |
download | csoap-889a90340eec29e63cb7b8b8095442d5858ad7ce.tar.gz csoap-889a90340eec29e63cb7b8b8095442d5858ad7ce.tar.bz2 |
develop
Diffstat (limited to 'libcsoap/soap-xml.h')
-rw-r--r-- | libcsoap/soap-xml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcsoap/soap-xml.h b/libcsoap/soap-xml.h index e4ce1ef..7976a42 100644 --- a/libcsoap/soap-xml.h +++ b/libcsoap/soap-xml.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-xml.h,v 1.2 2004/02/03 08:07:36 snowdrop Exp $ + * $Id: soap-xml.h,v 1.3 2004/02/03 08:59:22 snowdrop Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -28,7 +28,7 @@ #include <nanohttp/nanohttp-common.h> -typedef int (*soap_xmlnode_callback)(xmlNodePtr); +typedef int (*soap_xmlnode_callback)(xmlNodePtr, void*); xmlNodePtr soap_xml_get_children(xmlNodePtr param); @@ -39,7 +39,7 @@ soap_xpath_eval(xmlDocPtr doc, const char *xpath); int soap_xpath_foreach(xmlDocPtr doc, const char *xpath, - soap_xmlnode_callback cb); + soap_xmlnode_callback cb, void* userdata); void soap_xml_doc_print(xmlDocPtr doc); |