summaryrefslogtreecommitdiffstats
path: root/include/http_main.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/http_main.h')
-rw-r--r--include/http_main.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/http_main.h b/include/http_main.h
index 1cf883dcca..ce07f4914d 100644
--- a/include/http_main.h
+++ b/include/http_main.h
@@ -74,20 +74,20 @@ extern "C" {
*/
/** The name of the Apache executable */
-extern API_VAR_EXPORT const char *ap_server_argv0;
+extern AP_DECLARE_DATA const char *ap_server_argv0;
/** The global server's ServerRoot */
-extern API_VAR_EXPORT const char *ap_server_root;
+extern AP_DECLARE_DATA const char *ap_server_root;
/* for -C, -c and -D switches */
/** An array of all -C directives. These are processed before the server's
* config file */
-extern API_VAR_EXPORT apr_array_header_t *ap_server_pre_read_config;
+extern AP_DECLARE_DATA apr_array_header_t *ap_server_pre_read_config;
/** An array of all -c directives. These are processed after the server's
* config file */
-extern API_VAR_EXPORT apr_array_header_t *ap_server_post_read_config;
+extern AP_DECLARE_DATA apr_array_header_t *ap_server_post_read_config;
/** An array of all -D defines on the command line. This allows people to
* effect the server based on command line options */
-extern API_VAR_EXPORT apr_array_header_t *ap_server_config_defines;
+extern AP_DECLARE_DATA apr_array_header_t *ap_server_config_defines;
#ifdef __cplusplus
}