diff options
Diffstat (limited to 'ext/xmlrpc/xmlrpc-epi-php.c')
-rw-r--r-- | ext/xmlrpc/xmlrpc-epi-php.c | 29 |
1 files changed, 3 insertions, 26 deletions
diff --git a/ext/xmlrpc/xmlrpc-epi-php.c b/ext/xmlrpc/xmlrpc-epi-php.c index b1359d8f55..25bbc54a7c 100644 --- a/ext/xmlrpc/xmlrpc-epi-php.c +++ b/ext/xmlrpc/xmlrpc-epi-php.c @@ -73,11 +73,6 @@ #define PHP_EXT_VERSION "0.51" -/* You should tweak config.m4 so this symbol (or some else suitable) - gets defined. */ - -ZEND_DECLARE_MODULE_GLOBALS(xmlrpc) - static int le_xmlrpc_server; zend_function_entry xmlrpc_functions[] = { @@ -103,9 +98,9 @@ zend_module_entry xmlrpc_module_entry = { "xmlrpc", xmlrpc_functions, PHP_MINIT(xmlrpc), - PHP_MSHUTDOWN(xmlrpc), - PHP_RINIT(xmlrpc), /* Replace with NULL if there's nothing to do at request start */ - PHP_RSHUTDOWN(xmlrpc), /* Replace with NULL if there's nothing to do at request end */ + NULL, + NULL, + NULL, PHP_MINFO(xmlrpc), PHP_EXT_VERSION, STANDARD_MODULE_PROPERTIES @@ -236,24 +231,6 @@ PHP_MINIT_FUNCTION(xmlrpc) return SUCCESS; } -/* module shutdown */ -PHP_MSHUTDOWN_FUNCTION(xmlrpc) -{ - return SUCCESS; -} - -/* Remove if there's nothing to do at request start */ -PHP_RINIT_FUNCTION(xmlrpc) -{ - return SUCCESS; -} - -/* Remove if there's nothing to do at request end */ -PHP_RSHUTDOWN_FUNCTION(xmlrpc) -{ - return SUCCESS; -} - /* display info in phpinfo() */ PHP_MINFO_FUNCTION(xmlrpc) { |