mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 08:08:13 +02:00
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2000 by Jonas Maebe,
|
|
member of the Free Pascal development team.
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
Stat = packed record // No unix typing because of differences
|
|
st_dev : qword;
|
|
__pad0_ : array[0..1] of byte;
|
|
__st_ino_,
|
|
st_mode,
|
|
st_nlink,
|
|
st_uid,
|
|
st_gid : cardinal;
|
|
st_rdev : qword;
|
|
__pad3_ : array[0..1] of byte;
|
|
st_size : qword;
|
|
st_blksize: cardinal;
|
|
st_blocks : qword;
|
|
st_atime,
|
|
st_atime_nsec,
|
|
st_mtime,
|
|
st_mtime_nsec,
|
|
st_ctime,
|
|
st_ctime_nsec : cardinal;
|
|
st_ino : qword;
|
|
end;
|