From: William A. Rowe Jr Date: Wed, 30 Jul 2003 19:20:06 +0000 (+0000) Subject: Correct the declaration of the PFN_GETEXTENSIONVERSION type, X-Git-Tag: pre_ajp_proxy~1315 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d93bf49e39dca3c218265830e5894ba1469d3029;p=apache Correct the declaration of the PFN_GETEXTENSIONVERSION type, which gcc was rejecting (for good reasons.) Submitted by: Eduardo Franco git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100865 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/arch/win32/mod_isapi.h b/modules/arch/win32/mod_isapi.h index fc7f0537b3..7e3374b879 100644 --- a/modules/arch/win32/mod_isapi.h +++ b/modules/arch/win32/mod_isapi.h @@ -74,7 +74,7 @@ typedef struct HSE_VERSION_INFO { /* The startup entry point that must be exported by every ISAPI handler */ int APR_THREAD_FUNC GetExtensionVersion(HSE_VERSION_INFO *ver_info); -typedef (APR_THREAD_FUNC *PFN_GETEXTENSIONVERSION)(HSE_VERSION_INFO *ver_info); +typedef int (APR_THREAD_FUNC *PFN_GETEXTENSIONVERSION)(HSE_VERSION_INFO *ver_info); /* Our internal 'HCONN' representation, always opaque to the user. */