+ some dummy consts for the file io

git-svn-id: branches/z80@45030 -
This commit is contained in:
nickysn 2020-04-23 02:58:33 +00:00
parent 4c5f095422
commit 91eeb82e5a

View File

@ -110,6 +110,20 @@ implementation
{$ifdef FULL_RTL}
const
LineEnding = #13#10;
{ LFNSupport is a variable here, defined below!!! }
DirectorySeparator = '\';
DriveSeparator = ':';
ExtensionSeparator = '.';
PathSeparator = ';';
AllowDirectorySeparators : set of char = ['\','/'];
AllowDriveSeparators : set of char = [':'];
{ FileNameCaseSensitive and FileNameCasePreserving are defined separately below!!! }
maxExitCode = 255;
MaxPathLen = 256;
{$I system.inc}
{$I tinyheap.inc}