mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
- MFH revert over constfying
This commit is contained in:
parent
bfe7a47b15
commit
6b778b0def
@ -764,7 +764,7 @@ static const zend_module_dep spl_deps[] = {
|
|||||||
|
|
||||||
/* {{{ spl_module_entry
|
/* {{{ spl_module_entry
|
||||||
*/
|
*/
|
||||||
const zend_module_entry spl_module_entry = {
|
zend_module_entry spl_module_entry = {
|
||||||
#ifdef HAVE_SIMPLEXML
|
#ifdef HAVE_SIMPLEXML
|
||||||
STANDARD_MODULE_HEADER_EX, NULL,
|
STANDARD_MODULE_HEADER_EX, NULL,
|
||||||
spl_deps,
|
spl_deps,
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#define SPL_DEBUG(x)
|
#define SPL_DEBUG(x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern const zend_module_entry spl_module_entry;
|
extern zend_module_entry spl_module_entry;
|
||||||
#define phpext_spl_ptr &spl_module_entry
|
#define phpext_spl_ptr &spl_module_entry
|
||||||
|
|
||||||
#ifdef PHP_WIN32
|
#ifdef PHP_WIN32
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#ifndef PHP_TIDY_H
|
#ifndef PHP_TIDY_H
|
||||||
#define PHP_TIDY_H
|
#define PHP_TIDY_H
|
||||||
|
|
||||||
extern const zend_module_entry tidy_module_entry;
|
extern zend_module_entry tidy_module_entry;
|
||||||
#define phpext_tidy_ptr &tidy_module_entry
|
#define phpext_tidy_ptr &tidy_module_entry
|
||||||
|
|
||||||
#define TIDY_METHOD_MAP(name, func_name, arg_types) \
|
#define TIDY_METHOD_MAP(name, func_name, arg_types) \
|
||||||
|
@ -351,7 +351,7 @@ static zend_class_entry *tidy_ce_doc, *tidy_ce_node;
|
|||||||
static zend_object_handlers tidy_object_handlers_doc;
|
static zend_object_handlers tidy_object_handlers_doc;
|
||||||
static zend_object_handlers tidy_object_handlers_node;
|
static zend_object_handlers tidy_object_handlers_node;
|
||||||
|
|
||||||
const zend_module_entry tidy_module_entry = {
|
zend_module_entry tidy_module_entry = {
|
||||||
STANDARD_MODULE_HEADER,
|
STANDARD_MODULE_HEADER,
|
||||||
"tidy",
|
"tidy",
|
||||||
tidy_functions,
|
tidy_functions,
|
||||||
|
Loading…
Reference in New Issue
Block a user