summaryrefslogtreecommitdiff
path: root/ext/hwapi/hwapi.cpp
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2005-02-08 05:38:13 +0000
committerRasmus Lerdorf <rasmus@php.net>2005-02-08 05:38:13 +0000
commitae9dcb17993f87e38193145ee9df2e9e15e5acbb (patch)
treec285548f85951a65f0f3c4abe7e0d201bedd4991 /ext/hwapi/hwapi.cpp
parent82a60c65381a157a7b05a3a5843a15c42f667dc4 (diff)
downloadphp-git-ae9dcb17993f87e38193145ee9df2e9e15e5acbb.tar.gz
MFH eliminating a few more useless R* calls
Diffstat (limited to 'ext/hwapi/hwapi.cpp')
-rw-r--r--ext/hwapi/hwapi.cpp12
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");