summaryrefslogtreecommitdiff
path: root/include/apr_fnmatch.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-05-26 16:23:37 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-05-26 16:23:37 +0000
commit1d77f888027c2cf875be0c3a07ca827a170af60d (patch)
treedbf960b4bef92de87f8e03af704563abe8c5b861 /include/apr_fnmatch.h
parentc051203e7ba263d4b12afca6fb681d91f722a7a1 (diff)
downloadapr-1d77f888027c2cf875be0c3a07ca827a170af60d.tar.gz
Mass update of API_IMPORT/EXPORT symbols TO APR_ symbols.
APR is -NOT- the Apache server, so the import/export declations cannot use the same defined symbols. Other minor changes API_THREAD_PROC is now APR_THREAD_PROC. API_VAR_IMPORT/EXPORT are now APR_IMPORT/EXPORT_VAR, to allow easier grepping. The new compilation switches APR_STATIC and APR_EXPORT_SYMBOLS allow the builder to select either static linked or the creation of the export symbols for APR. The aprlib and aprlibdll .dsp projects now include the later symbol. More cleanups from recent commits are still needed, as well as a thorough review of the distinction between APR_EXPORT and APR_EXPORT_NONSTD. The later is used only for pure __cdecl required functions, such as variable arguments (not va array arguments, those are not an issue.) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60101 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_fnmatch.h')
-rw-r--r--include/apr_fnmatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_fnmatch.h b/include/apr_fnmatch.h
index c0300b638..ba27efd1c 100644
--- a/include/apr_fnmatch.h
+++ b/include/apr_fnmatch.h
@@ -51,11 +51,11 @@ extern "C" {
/* This flag is an Apache addition */
#define FNM_CASE_BLIND 0x08 /* Compare characters case ap_pool_t nsensitively. */
-API_EXPORT(ap_status_t) ap_fnmatch(const char *pattern, const char *strings,
+APR_EXPORT(ap_status_t) ap_fnmatch(const char *pattern, const char *strings,
int flags);
/* this function is an Apache addition */
-API_EXPORT(int) ap_is_fnmatch(const char *pattern);
+APR_EXPORT(int) ap_is_fnmatch(const char *pattern);
#ifdef __cplusplus
}