diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-02-06 08:01:35 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-02-06 08:01:35 +0000 |
commit | c22d7cf8834a6a22eadc321bf9427f79a65c1c30 (patch) | |
tree | 48e6ecc374b6164d422333bbf8853104906a86cf /ext/soap/php_xml.h | |
parent | dfde3095e42374d5f53e291c4a41370939b0b99a (diff) | |
download | php-git-c22d7cf8834a6a22eadc321bf9427f79a65c1c30.tar.gz |
PHP5 and WIN32 support was improved
Diffstat (limited to 'ext/soap/php_xml.h')
-rw-r--r-- | ext/soap/php_xml.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/soap/php_xml.h b/ext/soap/php_xml.h index 4ec1600b44..dfb31ffad2 100644 --- a/ext/soap/php_xml.h +++ b/ext/soap/php_xml.h @@ -44,10 +44,12 @@ xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns); int parse_namespace(const char *inval,char **value,char **namespace); +#ifndef ZEND_ENGINE_2 int php_stream_xmlIO_match_wrapper(const char *filename); void *php_stream_xmlIO_open_wrapper(const char *filename); int php_stream_xmlIO_read(void *context, char *buffer, int len); int php_stream_xmlIO_close(void *context); +#endif #define FOREACHATTRNODE(n,c,i) FOREACHATTRNODEEX(n,c,NULL,i) #define FOREACHATTRNODEEX(n,c,ns,i) \ |