diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index 95c948e7f0..985e4589db 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -91,10 +91,6 @@ typedef struct { const char *name; } proxy_wstat_t; -/* These 2 are in mod_proxy.c */ -PROXY_DECLARE_DATA extern proxy_hcmethods_t proxy_hcmethods[]; -PROXY_DECLARE_DATA extern proxy_wstat_t proxy_wstat_tbl[]; - #define BALANCER_PREFIX "balancer://" #if APR_CHARSET_EBCDIC @@ -562,6 +558,11 @@ struct proxy_balancer_method { #define PROXY_DECLARE_DATA __declspec(dllimport) #endif + +/* These 2 are in mod_proxy.c */ +PROXY_DECLARE_DATA extern proxy_hcmethods_t proxy_hcmethods[]; +PROXY_DECLARE_DATA extern proxy_wstat_t proxy_wstat_tbl[]; + /* Following 4 from health check */ APR_DECLARE_OPTIONAL_FN(void, hc_show_exprs, (request_rec *)); APR_DECLARE_OPTIONAL_FN(void, hc_select_exprs, (request_rec *, const char *));