mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 20:40:37 +02:00
+ added information about some ordinals
git-svn-id: trunk@3803 -
This commit is contained in:
parent
bafdfa7a9c
commit
49c7d33d5d
@ -1086,9 +1086,19 @@ const faReadOnly = 1;
|
|||||||
faArchive = 32;
|
faArchive = 32;
|
||||||
|
|
||||||
ilStandard = 1;
|
ilStandard = 1;
|
||||||
ilQueryEAsize = 2;
|
ilQueryEASize = 2;
|
||||||
ilQueryEAs = 3;
|
ilQueryEAs = 3;
|
||||||
ilQueryFullName = 5;
|
ilQueryFullName = 5;
|
||||||
|
ilStandardL = 11;
|
||||||
|
ilQueryEASizeL = 12;
|
||||||
|
ilQueryEAsL = 13;
|
||||||
|
|
||||||
|
FIL_Standard = ilStandard;
|
||||||
|
FIL_QueryEASize = ilQueryEASize;
|
||||||
|
FIL_QueryEAsFromList = ilQueryEAs;
|
||||||
|
FIL_StandardL = ilStandardL;
|
||||||
|
FIL_QueryEASizeL = ilQueryEASizeL;
|
||||||
|
FIL_QueryEAsFromListL = ilQueryEAsL;
|
||||||
|
|
||||||
{Format of date records:
|
{Format of date records:
|
||||||
|
|
||||||
@ -1156,13 +1166,51 @@ type
|
|||||||
FileAlloc:cardinal; {Amount of space the file really
|
FileAlloc:cardinal; {Amount of space the file really
|
||||||
occupies on disk.}
|
occupies on disk.}
|
||||||
AttrFile:cardinal; {Attributes of file.}
|
AttrFile:cardinal; {Attributes of file.}
|
||||||
cbList:longint; {Size of the file's extended attributes.}
|
cbList:cardinal; {Size of the file's extended attributes.}
|
||||||
Name:string; {Also possible to use as ASCIIZ.
|
Name:string; {Also possible to use as ASCIIZ.
|
||||||
The byte following the last string
|
The byte following the last string
|
||||||
character is always zero.}
|
character is always zero.}
|
||||||
end;
|
end;
|
||||||
PFileFindBuf4=^TFileFindBuf4;
|
PFileFindBuf4=^TFileFindBuf4;
|
||||||
|
|
||||||
|
TFileFindBuf3L=object(TFileStatus)
|
||||||
|
NextEntryOffset: cardinal; {Offset of next entry}
|
||||||
|
DateCreation, {Date of file creation.}
|
||||||
|
TimeCreation, {Time of file creation.}
|
||||||
|
DateLastAccess, {Date of last access to file.}
|
||||||
|
TimeLastAccess, {Time of last access to file.}
|
||||||
|
DateLastWrite, {Date of last modification of file.}
|
||||||
|
TimeLastWrite:word; {Time of last modification of file.}
|
||||||
|
FileSize, {Size of file.}
|
||||||
|
FileAlloc:int64; {Amount of space the file really
|
||||||
|
occupies on disk.}
|
||||||
|
AttrFile:cardinal; {Attributes of file.}
|
||||||
|
Name:string; {Also possible to use as ASCIIZ.
|
||||||
|
The byte following the last string
|
||||||
|
character is always zero.}
|
||||||
|
end;
|
||||||
|
PFileFindBuf3L=^TFileFindBuf3L;
|
||||||
|
|
||||||
|
TFileFindBuf4L=object(TFileStatus)
|
||||||
|
NextEntryOffset: cardinal; {Offset of next entry}
|
||||||
|
DateCreation, {Date of file creation.}
|
||||||
|
TimeCreation, {Time of file creation.}
|
||||||
|
DateLastAccess, {Date of last access to file.}
|
||||||
|
TimeLastAccess, {Time of last access to file.}
|
||||||
|
DateLastWrite, {Date of last modification of file.}
|
||||||
|
TimeLastWrite:word; {Time of last modification of file.}
|
||||||
|
FileSize, {Size of file.}
|
||||||
|
FileAlloc:int64; {Amount of space the file really
|
||||||
|
occupies on disk.}
|
||||||
|
AttrFile:cardinal; {Attributes of file.}
|
||||||
|
cbList:cardinal; {Size of the file's extended attributes.}
|
||||||
|
Name:string; {Also possible to use as ASCIIZ.
|
||||||
|
The byte following the last string
|
||||||
|
character is always zero.}
|
||||||
|
end;
|
||||||
|
PFileFindBuf4L=^TFileFindBuf4L;
|
||||||
|
|
||||||
|
|
||||||
{Find first file matching a filemask. In contradiction to DOS, a search
|
{Find first file matching a filemask. In contradiction to DOS, a search
|
||||||
handle is returned which should be closed with FindClose when done.
|
handle is returned which should be closed with FindClose when done.
|
||||||
FileMask = Filemask to search.
|
FileMask = Filemask to search.
|
||||||
@ -5281,7 +5329,7 @@ DosReleaseSpinLock = DOSCALLS.451
|
|||||||
DosFreeSpinLock = DOSCALLS.452
|
DosFreeSpinLock = DOSCALLS.452
|
||||||
DosListIO
|
DosListIO
|
||||||
DosListIOL
|
DosListIOL
|
||||||
DosOpenL
|
DosOpenL = DOSCALLS.981
|
||||||
DosPerfSystemCall
|
DosPerfSystemCall
|
||||||
DosProtectOpenL
|
DosProtectOpenL
|
||||||
DosProtectSetFileLocksL
|
DosProtectSetFileLocksL
|
||||||
@ -5302,8 +5350,8 @@ external 'DOSCALLS' index 368;
|
|||||||
|
|
||||||
DosQueryThreadAffinity
|
DosQueryThreadAffinity
|
||||||
DosSetFileLocksL
|
DosSetFileLocksL
|
||||||
DosSetFilePtrL
|
DosSetFilePtrL = DOSCALLS.988
|
||||||
DosSetFileSizeL
|
DosSetFileSizeL = DOSCALLS.989
|
||||||
DosSetThreadAffinity
|
DosSetThreadAffinity
|
||||||
Dos16SysTrace
|
Dos16SysTrace
|
||||||
DosVerifyPidTid
|
DosVerifyPidTid
|
||||||
|
Loading…
Reference in New Issue
Block a user