diff options
author | Chuck Murcko <chuck@apache.org> | 2001-05-11 06:35:41 +0200 |
---|---|---|
committer | Chuck Murcko <chuck@apache.org> | 2001-05-11 06:35:41 +0200 |
commit | 86154b12b282e51c8fe05be3b52a6d183aba7af8 (patch) | |
tree | 2faf0ea9e2ece4fdd7b2ff387bf8d29bd14ea7bd /include/http_connection.h | |
parent | Make the runtime path hack a little more portable, even though it is the (diff) | |
download | apache2-86154b12b282e51c8fe05be3b52a6d183aba7af8.tar.xz apache2-86154b12b282e51c8fe05be3b52a6d183aba7af8.zip |
Add the AP_DECLARE()/AP_CORE_DECLARE macros on the return types of
functions used by mod_proxy for export in DLL
Submitted by: Ian Holsman <IanH@cnet.com>
Reviewed by: Chuck murcko
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89078 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index 4636744008..6053d899a1 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -75,7 +75,7 @@ extern "C" { * @param id ID of this connection; unique at any point in time. * @return new conn_rec, or NULL if the connection has already been reset */ -conn_rec *ap_new_connection(apr_pool_t *p, server_rec *server, +AP_CORE_DECLARE(conn_rec *)ap_new_connection(apr_pool_t *p, server_rec *server, apr_socket_t *inout, long id); /** |