* always return error in SysUtils.FindFirst and .FindNext on the WASI platform,

in order to prevent infinite loops in tests
This commit is contained in:
Nikolay Nikolov 2021-10-03 01:08:52 +03:00
parent 6f88919f37
commit 77ca8ba16d

View File

@ -132,11 +132,15 @@ end;
Function InternalFindFirst (Const Path : RawByteString; Attr : Longint; out Rslt : TAbstractSearchRec; var Name: RawByteString) : Longint;
begin
{ not yet implemented }
Result := -1;
end;
Function InternalFindNext (var Rslt : TAbstractSearchRec; var Name : RawByteString) : Longint;
begin
{ not yet implemented }
Result := -1;
end;