From: Uwe Schindler Date: Thu, 29 May 2003 20:13:15 +0000 (+0000) Subject: Changes for compilation on windows X-Git-Tag: BEFORE_FD_REAPPLY~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b653dfe7ba5af0fcba75761e5c93bdc36617f07d;p=php Changes for compilation on windows --- 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 */