summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Schindler <thetaphi@php.net>2003-05-29 20:13:42 +0000
committerUwe Schindler <thetaphi@php.net>2003-05-29 20:13:42 +0000
commitb13365a56b8f2217b68d6888557b275d1e551ead (patch)
treeae0db8fc26c62c6242fb090586d6b34da9d9c07f
parent21d32c2430375cf9edaa0057f615dc14e361078f (diff)
downloadphp-git-b13365a56b8f2217b68d6888557b275d1e551ead.tar.gz
Changes for compilation under windows
-rw-r--r--sapi/nsapi/nsapi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c
index c57aa64551..4ba9bbaf36 100644
--- a/sapi/nsapi/nsapi.c
+++ b/sapi/nsapi/nsapi.c
@@ -211,10 +211,10 @@ PHP_INI_END()
/* newer servers hide this functions from the programmer so redefine the functions dynamically
thanks to Chris Elving from Sun for the function declarations */
-int (NSAPI_PUBLIC *nsapi_servact_uri2path)(Session *, Request *) = NULL;
-int (NSAPI_PUBLIC *nsapi_servact_pathchecks)(Session *, Request *) = NULL;
-int (NSAPI_PUBLIC *nsapi_servact_fileinfo)(Session *, Request *) = NULL;
-int (NSAPI_PUBLIC *nsapi_servact_service)(Session *, Request *) = NULL;
+int (*nsapi_servact_uri2path)(Session *, Request *) = NULL;
+int (*nsapi_servact_pathchecks)(Session *, Request *) = NULL;
+int (*nsapi_servact_fileinfo)(Session *, Request *) = NULL;
+int (*nsapi_servact_service)(Session *, Request *) = NULL;
/* {{{ php_nsapi_init_dynamic_symbols
*/