diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-09 08:48:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-09 08:48:05 +0000 |
commit | bc415d5a8883bbe5b15c12e9a30f916c8010204a (patch) | |
tree | 216499649825b9005a59c0e3c5b5be67c2092871 /ext/msql | |
parent | 91cf2e59c47a30f075fe1c69d17550b956df9865 (diff) | |
download | php-git-bc415d5a8883bbe5b15c12e9a30f916c8010204a.tar.gz |
* Finalizing the PHP version of SAPI. Support POST and cookies among other things.
* Fully implement ISAPI support - POST and cookies among other things.
* Almost completely rewrote phpinfo(). Allow modules to easily display their
information in phpinfo() without modifying phpinfo() itself (prototype for
the module info function was changed, thus the large amount of updated module
files).
* Initial extended SAPI support for Apache, completely untested.
* CGI now uses SAPI fully as well.
Diffstat (limited to 'ext/msql')
-rw-r--r-- | ext/msql/msql.c | 2 | ||||
-rw-r--r-- | ext/msql/php3_msql.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/msql/msql.c b/ext/msql/msql.c index acf687174b..074c7d0da3 100644 --- a/ext/msql/msql.c +++ b/ext/msql/msql.c @@ -275,7 +275,7 @@ DLEXPORT int php3_rinit_msql(INIT_FUNC_ARGS) return SUCCESS; } -DLEXPORT void php3_info_msql(void) +DLEXPORT void php3_info_msql(ZEND_MODULE_INFO_FUNC_ARGS) { char maxp[16],maxl[16]; MSQL_TLS_VARS; diff --git a/ext/msql/php3_msql.h b/ext/msql/php3_msql.h index 6c1e8e3fbf..738f0c0856 100644 --- a/ext/msql/php3_msql.h +++ b/ext/msql/php3_msql.h @@ -48,7 +48,7 @@ extern php3_module_entry msql_module_entry; extern DLEXPORT int php3_minit_msql(INIT_FUNC_ARGS); extern DLEXPORT int php3_rinit_msql(INIT_FUNC_ARGS); extern DLEXPORT int php3_mshutdown_msql(SHUTDOWN_FUNC_ARGS); -extern DLEXPORT void php3_info_msql(void); +extern DLEXPORT void php3_info_msql(ZEND_MODULE_INFO_FUNC_ARGS); extern DLEXPORT void php3_msql_connect(INTERNAL_FUNCTION_PARAMETERS); extern DLEXPORT void php3_msql_pconnect(INTERNAL_FUNCTION_PARAMETERS); extern DLEXPORT void php3_msql_close(INTERNAL_FUNCTION_PARAMETERS); |