+ added some more WASI RTL constants

git-svn-id: branches/wasm@48238 -
This commit is contained in:
nickysn 2021-01-20 21:23:40 +00:00
parent f8361cb5dd
commit 9f69800394

View File

@ -9,7 +9,31 @@ interface
{$I systemh.inc}
const
LineEnding = #10;
LFNSupport = true;
DirectorySeparator = '/';
DriveSeparator = '';
ExtensionSeparator = '.';
PathSeparator = ':';
AllowDirectorySeparators : set of char = ['\','/'];
AllowDriveSeparators : set of char = [];
{ FileNameCaseSensitive and FileNameCasePreserving are defined below! }
maxExitCode = 65535;
MaxPathLen = 4096;
AllFilesMask = '*';
const
UnusedHandle = -1;
StdInputHandle = 0;
StdOutputHandle = 1;
StdErrorHandle = 2;
FileNameCaseSensitive : boolean = true;
FileNameCasePreserving: boolean = true;
CtrlZMarksEOF: boolean = false; (* #26 not considered as end of file *)
sLineBreak = LineEnding;
DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsLF;
{$else FULL_RTL}
type