diff options
author | Edin Kadribasic <edink@php.net> | 2002-11-18 12:52:57 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2002-11-18 12:52:57 +0000 |
commit | 03fc9eb4153b12d696a2e7af4d619f5507f5e993 (patch) | |
tree | 65aa86048240e3f60fe0143c71eaa6f774787861 /sapi/apache_hooks/php_apache_http.h | |
parent | 039d6a16685e5d72e17d61145e709745fbc643e4 (diff) | |
download | php-git-03fc9eb4153b12d696a2e7af4d619f5507f5e993.tar.gz |
Initial attempt to get apache_hooks api to compile on windows.
Still getting link errors with
undefined symbol: 'php_request_startup_for_hook'.
Diffstat (limited to 'sapi/apache_hooks/php_apache_http.h')
-rw-r--r-- | sapi/apache_hooks/php_apache_http.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/apache_hooks/php_apache_http.h b/sapi/apache_hooks/php_apache_http.h index d2c63e43b7..b9b3c63715 100644 --- a/sapi/apache_hooks/php_apache_http.h +++ b/sapi/apache_hooks/php_apache_http.h @@ -39,5 +39,6 @@ #include "mod_php4.h" -PHPAPI zval *php_apache_request_new(request_rec *r); +zval *php_apache_request_new(request_rec *r); +int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC); |