- removed TWasiSearchRec.Mode, because it was unused

This commit is contained in:
Nikolay Nikolov 2021-10-19 17:31:02 +03:00
parent 8c39213d39
commit 6921b968f1
2 changed files with 0 additions and 3 deletions

View File

@ -385,7 +385,6 @@ begin
o.DirFD:=i.DirFD;
o.SearchType:=i.SearchType;
o.SearchAttr:=i.SearchAttr;
o.Mode:=i.Mode;
o.Attr:=i.Attr;
UnpackTime(i.Time,DT);
o.Time:=DTToWasiDate(DT);
@ -406,7 +405,6 @@ begin
o.DirFD:=i.DirFD;
o.SearchType:=i.SearchType;
o.SearchAttr:=i.SearchAttr;
o.Mode:=i.Mode;
o.Attr:=i.Attr;
WasiDateToDt(i.Time,DT);
PackTime(DT,o.Time);

View File

@ -30,7 +30,6 @@ type
DirFD : __wasi_fd_t; {directory fd handle for reading directory}
SearchType : Byte; {0=normal, 1=open will close, 2=only 1 file}
SearchAttr : Byte; {attribute we are searching for}
Mode : Word;
Attr : Byte; {attribute of found file}
Time : __wasi_timestamp_t; {last modify date of found file}
Size : __wasi_filesize_t; {file size of found file}