]> granicus.if.org Git - apache/commitdiff
forgot the ap-declare's
authorIan Holsman <ianh@apache.org>
Sat, 23 Feb 2002 03:58:05 +0000 (03:58 +0000)
committerIan Holsman <ianh@apache.org>
Sat, 23 Feb 2002 03:58:05 +0000 (03:58 +0000)
the're needed for win32

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93545 13f79535-47bb-0310-9956-ffa450edef68

server/util_filter.c

index 157519c83c8c192a2c7ecbe02790cf2f2a6578a8..afc0731de233b9eef93716b8cd1cee0d06f44dd7 100644 (file)
@@ -222,12 +222,12 @@ static ap_filter_rec_t *get_filter_handle(const char *name,
     return NULL;
 }
 
-ap_filter_rec_t *ap_get_output_filter_handle(const char *name)
+AP_DECLARE(ap_filter_rec_t *)ap_get_output_filter_handle(const char *name)
 {
     return get_filter_handle(name, registered_output_filters);
 }
 
-ap_filter_rec_t *ap_get_input_filter_handle(const char *name)
+AP_DECLARE(ap_filter_rec_t *)ap_get_input_filter_handle(const char *name)
 {
     return get_filter_handle(name, registered_input_filters);
 }