Add flags field to TStatfs record

git-svn-id: trunk@41973 -
This commit is contained in:
pierre 2019-05-02 12:59:11 +00:00
parent ce1ba76ce5
commit ae5a9e033a

View File

@ -195,7 +195,8 @@ Type
fsid : array[0..1] of cint; { File system ID } fsid : array[0..1] of cint; { File system ID }
namelen : clong; { Maximum name length in system } namelen : clong; { Maximum name length in system }
frsize : clong; frsize : clong;
spare : array [0..4] of clong; { For later use } flags : clong;
spare : array [0..3] of clong; { For later use }
end; end;
{$else} {$else}
TStatfs = record TStatfs = record
@ -209,7 +210,8 @@ Type
fsid : array[0..1] of cint; { File system ID } fsid : array[0..1] of cint; { File system ID }
namelen, { Maximum name length in system } namelen, { Maximum name length in system }
frsize : cint; frsize : cint;
spare : array [0..4] of cint; { For later use } flags : cint;
spare : array [0..3] of cint; { For later use }
end; end;
{$endif} {$endif}
PStatFS=^TStatFS; PStatFS=^TStatFS;