summaryrefslogtreecommitdiff
path: root/rtl/watcom
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2013-06-27 21:37:39 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2013-06-27 21:37:39 +0000
commit616a1b9933a231378cf4986859c5a96db746d0e8 (patch)
treebbfcb6b9e4518bd7f2e7a0fc4b4a8a5a40715ca4 /rtl/watcom
parent33629df2cb55241871579e2459f31356f2589de1 (diff)
downloadfpc-616a1b9933a231378cf4986859c5a96db746d0e8.tar.gz
+ FPCRTL_FILESYSTEM_SINGLE_BYTE_API define that is set for targets where we
use a single byte API for file system operations + FPCRTL_FILESYSTEM_TWO_BYTE_API define that is set for targets where we use a single byte API for file system operations o in principle, both can be set if both are supprted and implemented in the RTL in order to minimise conversions depending on the scenario git-svn-id: http://svn.freepascal.org/svn/fpc/branches/cpstrrtl@24991 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'rtl/watcom')
-rw-r--r--rtl/watcom/rtldefs.inc6
1 files changed, 6 insertions, 0 deletions
diff --git a/rtl/watcom/rtldefs.inc b/rtl/watcom/rtldefs.inc
index 8d371ca8a1..3376428f5e 100644
--- a/rtl/watcom/rtldefs.inc
+++ b/rtl/watcom/rtldefs.inc
@@ -16,3 +16,9 @@
{ the single byte OS APIs always use UTF-8 }
{ define FPCRTL_FILESYSTEM_UTF8}
+
+{ The OS supports a single byte file system operations API that we use }
+{$define FPCRTL_FILESYSTEM_SINGLE_BYTE_API}
+
+{ The OS supports a two byte file system operations API that we use }
+{ define FPCRTL_FILESYSTEM_TWO_BYTE_API}