diff options
author | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-10 05:30:25 +0200 |
---|---|---|
committer | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-10 05:30:25 +0200 |
commit | dc8a79e56331437a29a201ba74383ae01daf9c19 (patch) | |
tree | 6eb33dce76ec498b1358fcd579ebba9a71e486e6 /include/http_request.h | |
parent | remove space after \ (diff) | |
download | apache2-dc8a79e56331437a29a201ba74383ae01daf9c19.tar.xz apache2-dc8a79e56331437a29a201ba74383ae01daf9c19.zip |
ap_process_request needs exportation for use in mod_h2 on Windows
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1694950 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_request.h')
-rw-r--r-- | include/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_request.h b/include/http_request.h index 97591e3e3e..595042bb25 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -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) |