mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 22:06:40 +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 }
|
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user