summaryrefslogtreecommitdiffstats
path: root/os/win32/os.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-10-16 08:05:15 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-10-16 08:05:15 +0200
commitd6490633ebbf0573107211f2cbd7517dad37a07e (patch)
treea32c2d84488b7197c9853faafe248ed6f4903ca5 /os/win32/os.h
parent Cleaning up a _Security_ concern - Please Review Carefully (diff)
downloadapache2-d6490633ebbf0573107211f2cbd7517dad37a07e.tar.xz
apache2-d6490633ebbf0573107211f2cbd7517dad37a07e.zip
Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper) and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE. All _VAR_ flavors changes to _DATA to be absolutely clear. Thank you Greg, for the most obvious suggestion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86609 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/win32/os.h')
-rw-r--r--os/win32/os.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/win32/os.h b/os/win32/os.h
index b85f54632f..c362590a63 100644
--- a/os/win32/os.h
+++ b/os/win32/os.h
@@ -125,10 +125,10 @@ __inline int ap_os_is_path_absolute(const char *file)
}
/* OS-dependent filename routines in util_win32.c */
-API_EXPORT(char *) ap_os_canonical_filename(apr_pool_t *p, const char *file);
-API_EXPORT(char *) ap_os_case_canonical_filename(apr_pool_t *pPool, const char *szFile);
-API_EXPORT(char *) ap_os_systemcase_filename(apr_pool_t *pPool, const char *szFile);
-API_EXPORT(int) ap_os_is_filename_valid(const char *file);
+AP_DECLARE(char *) ap_os_canonical_filename(apr_pool_t *p, const char *file);
+AP_DECLARE(char *) ap_os_case_canonical_filename(apr_pool_t *pPool, const char *szFile);
+AP_DECLARE(char *) ap_os_systemcase_filename(apr_pool_t *pPool, const char *szFile);
+AP_DECLARE(int) ap_os_is_filename_valid(const char *file);
typedef void thread;
typedef void event;