diff options
author | Jeff Trawick <trawick@apache.org> | 2000-09-18 21:30:23 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-09-18 21:30:23 +0200 |
commit | b528a5f825822f5c8aaf430ab14b9e12d4a9dff8 (patch) | |
tree | 15dd2c462ff7590033f473c98aa7701fbb59f8c7 /include/http_protocol.h | |
parent | Fix some problems with the recent port of RemoveEncoding and (diff) | |
download | apache2-b528a5f825822f5c8aaf430ab14b9e12d4a9dff8.tar.xz apache2-b528a5f825822f5c8aaf430ab14b9e12d4a9dff8.zip |
Fix the calling convention on Windows for ap_bucket_printf() and
ap_method_list_do().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86249 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r-- | include/http_protocol.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index 7a6921bd5b..1e4f2ef299 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -265,10 +265,10 @@ API_EXPORT(size_t) ap_send_mmap(apr_mmap_t *mm, request_rec *r, size_t offset, API_EXPORT(ap_method_list_t *) ap_make_method_list(apr_pool_t *p, int nelts); API_EXPORT(void) ap_copy_method_list(ap_method_list_t *dest, ap_method_list_t *src); -API_EXPORT(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, - int mnum), - void *rec, - const ap_method_list_t *ml, ...); +API_EXPORT_NONSTD(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, + int mnum), + void *rec, + const ap_method_list_t *ml, ...); API_EXPORT(void) ap_method_list_vdo(int (*comp) (void *urec, const char *mname, int mnum), void *rec, const ap_method_list_t *ml, |