]> granicus.if.org Git - apache/commitdiff
Correct the declaration of the PFN_GETEXTENSIONVERSION type,
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 30 Jul 2003 19:20:06 +0000 (19:20 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 30 Jul 2003 19:20:06 +0000 (19:20 +0000)
  which gcc was rejecting (for good reasons.)

Submitted by: Eduardo Franco <eduardo.franco@pulso.com.br>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100865 13f79535-47bb-0310-9956-ffa450edef68

modules/arch/win32/mod_isapi.h

index fc7f0537b3a66f3656f000c7d3eca190b96d2f2a..7e3374b87950f0d05d6a42c338be5228ce154f63 100644 (file)
@@ -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.
  */