diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2005-02-07 23:04:00 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2005-02-07 23:04:00 +0000 |
commit | 3baf795c17a0a2199eb7e8b621dac7144b725c17 (patch) | |
tree | 695c64e70f287101c181023aee0310c71600578a /ext/hwapi/hwapi.cpp | |
parent | aa6cb1055b0fd0f1e165cea038b1f4d2d99a4816 (diff) | |
download | php-git-3baf795c17a0a2199eb7e8b621dac7144b725c17.tar.gz |
Get rid of more useless RINIT/RSHUTDOWN calls
Diffstat (limited to 'ext/hwapi/hwapi.cpp')
-rw-r--r-- | ext/hwapi/hwapi.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/ext/hwapi/hwapi.cpp b/ext/hwapi/hwapi.cpp index 157195ae01..b2530d6cf7 100644 --- a/ext/hwapi/hwapi.cpp +++ b/ext/hwapi/hwapi.cpp @@ -202,8 +202,8 @@ zend_module_entry hwapi_module_entry = { "hwapi", hwapi_functions, PHP_MINIT(hwapi), - PHP_MSHUTDOWN(hwapi), - PHP_RINIT(hwapi), + NULL, + NULL, NULL, PHP_MINFO(hwapi), NO_VERSION_YET, @@ -2224,14 +2224,6 @@ PHP_MINIT_FUNCTION(hwapi) { return SUCCESS; } -PHP_MSHUTDOWN_FUNCTION(hwapi) { - return SUCCESS; -} - -PHP_RINIT_FUNCTION(hwapi) { - return SUCCESS; -} - PHP_MINFO_FUNCTION(hwapi) { php_info_print_table_start(); php_info_print_table_row(2, "Hyperwave API Support", "enabled"); |