* fix the stupid pascal names in x86_64 linux stat

git-svn-id: trunk@8020 -
This commit is contained in:
Almindor 2007-07-11 21:02:34 +00:00
parent 5c1296e87b
commit b0fde4700f

View File

@ -69,24 +69,24 @@
Stat = record
case Byte of
0:(dev: cuLong deprecated;
st_ino: cuLong deprecated;
st_nlink: cuLong deprecated;
ino: cuLong deprecated;
nlink: cuLong deprecated;
st_mode: cuInt deprecated;
st_uid: cuInt deprecated;
st_gid: cuInt deprecated;
mode: cuInt deprecated;
uid: cuInt deprecated;
gid: cuInt deprecated;
__pad0: cuInt deprecated;
st_rdev: cuLong deprecated;
st_size: cLong deprecated;
st_blksize: cLong deprecated;
st_blocks: cLong deprecated; //* Number 512-byte blocks allocated. */
rdev: cuLong deprecated;
size: cLong deprecated;
blksize: cLong deprecated;
blocks: cLong deprecated; //* Number 512-byte blocks allocated. */
st_atime: cuLong deprecated;
st_atime_nsec: cuLong deprecated;
st_mtime: cuLong deprecated;
st_mtime_nsec: cuLong deprecated;
st_ctime: cuLong deprecated;
st_ctime_nsec: cuLong deprecated;
atime: cuLong deprecated;
atime_nsec: cuLong deprecated;
mtime: cuLong deprecated;
mtime_nsec: cuLong deprecated;
ctime: cuLong deprecated;
ctime_nsec: cuLong deprecated;
__unused: array[0..2] of cLong deprecated;);
1:(st_dev: cuLong;
@ -96,7 +96,7 @@
st_mode: cuInt;
st_uid: cuInt;
st_gid: cuInt;
__pad0: cuInt;
__pad1: cuInt;
st_rdev: cuLong;
st_size: cLong;
st_blksize: cLong;
@ -106,9 +106,9 @@
st_atime_nsec: cuLong;
st_mtime: cuLong;
st_mtime_nsec: cuLong;
st_ctime: cuLong;
st_ctime: cuLong;
st_ctime_nsec: cuLong;
__unused: array[0..2] of cLong);
__unused2: array[0..2] of cLong);
end;
{$endif}