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.c | |
parent | dfde3095e42374d5f53e291c4a41370939b0b99a (diff) | |
download | php-git-c22d7cf8834a6a22eadc321bf9427f79a65c1c30.tar.gz |
PHP5 and WIN32 support was improved
Diffstat (limited to 'ext/soap/php_xml.c')
-rw-r--r-- | ext/soap/php_xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c index 6912be670c..6fc82ec44e 100644 --- a/ext/soap/php_xml.c +++ b/ext/soap/php_xml.c @@ -162,6 +162,7 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size) return ret; } +#ifndef ZEND_ENGINE_2 int php_stream_xmlIO_match_wrapper(const char *filename) { TSRMLS_FETCH(); @@ -185,6 +186,7 @@ int php_stream_xmlIO_close(void *context) TSRMLS_FETCH(); return php_stream_close((php_stream*)context); } +#endif xmlNsPtr attr_find_ns(xmlAttrPtr node) { |