1999-04-22 10:48:28 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:03:12 +08:00
|
|
|
| Copyright (c) The PHP Group |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
1999-12-06 00:43:42 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
1999-12-06 00:43:42 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2017-01-02 23:30:12 +08:00
|
|
|
| Authors: Stig Sæther Bakken <ssb@php.net> |
|
2000-10-29 17:14:55 +08:00
|
|
|
| Thies C. Arntzen <thies@thieso.net> |
|
2003-05-22 11:04:11 +08:00
|
|
|
| Sterling Hughes <sterling@php.net> |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
1999-12-06 00:43:42 +08:00
|
|
|
*/
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_XML_H
|
|
|
|
#define PHP_XML_H
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2003-05-07 03:38:49 +08:00
|
|
|
#ifdef HAVE_XML
|
2018-09-16 17:07:40 +08:00
|
|
|
|
2000-02-11 02:03:55 +08:00
|
|
|
extern zend_module_entry xml_module_entry;
|
|
|
|
#define xml_module_ptr &xml_module_entry
|
2015-03-24 04:30:22 +08:00
|
|
|
|
|
|
|
#include "php_version.h"
|
|
|
|
#define PHP_XML_VERSION PHP_VERSION
|
|
|
|
|
2018-02-21 02:57:48 +08:00
|
|
|
#include "expat_compat.h"
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
#ifdef XML_UNICODE
|
2000-02-11 02:03:55 +08:00
|
|
|
#error "UTF-16 Unicode support not implemented!"
|
1999-04-22 10:48:28 +08:00
|
|
|
#endif
|
|
|
|
|
2018-09-16 17:07:40 +08:00
|
|
|
#else
|
|
|
|
#define xml_module_ptr NULL
|
|
|
|
#endif /* HAVE_XML */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
1999-05-21 18:06:25 +08:00
|
|
|
#define phpext_xml_ptr xml_module_ptr
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#endif /* PHP_XML_H */
|