mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 00:39:34 +02:00
Add flags field to TStatfs record
git-svn-id: trunk@41973 -
This commit is contained in:
parent
ce1ba76ce5
commit
ae5a9e033a
@ -195,7 +195,8 @@ Type
|
||||
fsid : array[0..1] of cint; { File system ID }
|
||||
namelen : clong; { Maximum name length in system }
|
||||
frsize : clong;
|
||||
spare : array [0..4] of clong; { For later use }
|
||||
flags : clong;
|
||||
spare : array [0..3] of clong; { For later use }
|
||||
end;
|
||||
{$else}
|
||||
TStatfs = record
|
||||
@ -209,7 +210,8 @@ Type
|
||||
fsid : array[0..1] of cint; { File system ID }
|
||||
namelen, { Maximum name length in system }
|
||||
frsize : cint;
|
||||
spare : array [0..4] of cint; { For later use }
|
||||
flags : cint;
|
||||
spare : array [0..3] of cint; { For later use }
|
||||
end;
|
||||
{$endif}
|
||||
PStatFS=^TStatFS;
|
||||
|
Loading…
Reference in New Issue
Block a user