From d6490633ebbf0573107211f2cbd7517dad37a07e Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 16 Oct 2000 06:05:15 +0000 Subject: Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper) and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE. All _VAR_ flavors changes to _DATA to be absolutely clear. Thank you Greg, for the most obvious suggestion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86609 13f79535-47bb-0310-9956-ffa450edef68 --- modules/echo/mod_echo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/echo/mod_echo.c') diff --git a/modules/echo/mod_echo.c b/modules/echo/mod_echo.c index 0c6c4bbb13..c6d960bbeb 100644 --- a/modules/echo/mod_echo.c +++ b/modules/echo/mod_echo.c @@ -62,7 +62,7 @@ #include "http_config.h" #include "http_connection.h" -API_VAR_EXPORT module echo_module; +AP_DECLARE_DATA module echo_module; typedef struct { @@ -122,7 +122,7 @@ static void register_hooks(void) ap_hook_process_connection(process_echo_connection,NULL,NULL,AP_HOOK_MIDDLE); } -API_VAR_EXPORT module echo_module = { +AP_DECLARE_DATA module echo_module = { STANDARD20_MODULE_STUFF, NULL, /* create per-directory config structure */ NULL, /* merge per-directory config structures */ -- cgit v1.2.3