summaryrefslogtreecommitdiff
path: root/include/arch
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2021-12-02 22:09:53 +0000
committerMladen Turk <mturk@apache.org>2021-12-02 22:09:53 +0000
commitfd59a4a0747cf5895c21481acb67f1519b11802a (patch)
tree52e43979463cd86b92971dff2bea3a358168abcf /include/arch
parent62285e4db364a86e99699b0a1d13a2f2f3bae49f (diff)
downloadapr-fd59a4a0747cf5895c21481acb67f1519b11802a.tar.gz
Stage 3 in cleaning win95 code ... cleanup headers
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1895511 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch')
-rw-r--r--include/arch/win32/apr_arch_misc.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/arch/win32/apr_arch_misc.h b/include/arch/win32/apr_arch_misc.h
index fe42ec49b..057f4adfa 100644
--- a/include/arch/win32/apr_arch_misc.h
+++ b/include/arch/win32/apr_arch_misc.h
@@ -118,30 +118,6 @@ extern APR_DECLARE_DATA apr_oslevel_e apr_os_level;
apr_status_t apr_get_oslevel(apr_oslevel_e *);
-/* The APR_HAS_ANSI_FS symbol is PRIVATE, and internal to APR.
- * APR only supports char data for filenames. Like most applications,
- * characters >127 are essentially undefined. APR_HAS_UNICODE_FS lets
- * the application know that utf-8 is the encoding method of APR, and
- * only incidently hints that we have Wide OS calls.
- *
- * APR_HAS_ANSI_FS is simply an OS flag to tell us all calls must be
- * the unicode eqivilant.
- */
-
-#define APR_HAS_ANSI_FS 0
-
-/* IF_WIN_OS_IS_UNICODE / ELSE_WIN_OS_IS_ANSI help us keep the code trivial
- * where have runtime tests for unicode-ness, that aren't needed in any
- * build which supports only WINNT or WCE.
- */
-#if APR_HAS_ANSI_FS && APR_HAS_UNICODE_FS
-#define IF_WIN_OS_IS_UNICODE if (apr_os_level >= APR_WIN_UNICODE)
-#define ELSE_WIN_OS_IS_ANSI else
-#else /* APR_HAS_UNICODE_FS */
-#define IF_WIN_OS_IS_UNICODE
-#define ELSE_WIN_OS_IS_ANSI
-#endif /* APR_HAS_ANSI_FS && APR_HAS_UNICODE_FS */
-
#if defined(_MSC_VER)
#include "crtdbg.h"