123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef PHP_XML_H
- #define PHP_XML_H
- #ifdef HAVE_XML
- extern zend_module_entry xml_module_entry;
- #define xml_module_ptr &xml_module_entry
- #include "php_version.h"
- #define PHP_XML_VERSION PHP_VERSION
- #include "expat_compat.h"
- #ifdef XML_UNICODE
- #error "UTF-16 Unicode support not implemented!"
- #endif
- #else
- #define xml_module_ptr NULL
- #endif
- #define phpext_xml_ptr xml_module_ptr
- #endif
|