summaryrefslogtreecommitdiff
path: root/include/http_connection.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-05-27 22:53:48 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-05-27 22:53:48 +0000
commit3f29977506a0c0a5465886109d758f62c5a0baac (patch)
tree3989e28a6646686dc8fe2500d19ee77c2ec73b62 /include/http_connection.h
parentda493b8be15e831bbbefbe28826f90163f430bbd (diff)
downloadhttpd-3f29977506a0c0a5465886109d758f62c5a0baac.tar.gz
PR:
Obtained from: Submitted by: Reviewed by: Reverse out additional linkage argument from DECLARE_HOOK and IMPLEMENT_HOOK macros. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r--include/http_connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_connection.h b/include/http_connection.h
index dafc5c4934..cb504534ef 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -74,8 +74,8 @@ void ap_lingering_close(conn_rec *);
#endif
/* Hooks */
-AP_DECLARE_HOOK(API_EXPORT,int,pre_connection,(conn_rec *))
-AP_DECLARE_HOOK(API_EXPORT,int,process_connection,(conn_rec *))
+AP_DECLARE_HOOK(int,pre_connection,(conn_rec *))
+AP_DECLARE_HOOK(int,process_connection,(conn_rec *))
#ifdef __cplusplus
}