]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
ap_process_request needs exportation for use in mod_h2 on Windows
authorGregg Lewis Smith <gsmith@apache.org>
Mon, 10 Aug 2015 03:30:25 +0000 (03:30 +0000)
committerGregg Lewis Smith <gsmith@apache.org>
Mon, 10 Aug 2015 03:30:25 +0000 (03:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1694950 13f79535-47bb-0310-9956-ffa450edef68

include/http_request.h
modules/http/http_request.c

index 97591e3e3ee38256b00544a37f700adbbb41ac76..595042bb25d3c94cdb6f08e05b9d7d24020e0efa 100644 (file)
@@ -316,7 +316,7 @@ AP_DECLARE(void) ap_allow_standard_methods(request_rec *r, int reset, ...);
  * the response to the client
  * @param r The current request
  */
-void ap_process_request(request_rec *r);
+AP_DECLARE(void) ap_process_request(request_rec *r);
 
 /* For post-processing after a handler has finished with a request.
  * (Commonly used after it was suspended)
index 7b06def9405573da04ff7712b038c24ac67f7bc0..70bf2937c08dbd6cdbb346c50267ce25d5ab6146 100644 (file)
@@ -363,7 +363,7 @@ void ap_process_async_request(request_rec *r)
     ap_process_request_after_handler(r);
 }
 
-void ap_process_request(request_rec *r)
+AP_DECLARE(void) ap_process_request(request_rec *r)
 {
     apr_bucket_brigade *bb;
     apr_bucket *b;