mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 21:29:42 +02:00
* twin32fileattributedata
This commit is contained in:
parent
82f816233d
commit
0d15a78692
@ -6545,6 +6545,19 @@ type
|
|||||||
cbSize: Word; { the count in bytes of the size of }
|
cbSize: Word; { the count in bytes of the size of }
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
_WIN32_FILE_ATTRIBUTE_DATA = packed record
|
||||||
|
dwFileAttributes: DWORD;
|
||||||
|
ftCreationTime: FILETIME;
|
||||||
|
ftLastAccessTime: FILETIME;
|
||||||
|
ftLastWriteTime: FILETIME;
|
||||||
|
nFileSizeHigh: DWORD;
|
||||||
|
nFileSizeLow: DWORD;
|
||||||
|
end;
|
||||||
|
WIN32_FILE_ATTRIBUTE_DATA = _WIN32_FILE_ATTRIBUTE_DATA ;
|
||||||
|
LPWIN32_FILE_ATTRIBUTE_DATA = ^_WIN32_FILE_ATTRIBUTE_DATA;
|
||||||
|
TWIN32FILEATTRIBUTEDATA = _WIN32_FILE_ATTRIBUTE_DATA ;
|
||||||
|
PWIN32FILEATTRIBUTEDATA = ^_WIN32_FILE_ATTRIBUTE_DATA;
|
||||||
|
|
||||||
{$endif read_interface}
|
{$endif read_interface}
|
||||||
|
|
||||||
|
|
||||||
@ -7014,7 +7027,10 @@ type
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.20 2003-01-02 22:07:00 peter
|
Revision 1.21 2003-12-04 12:34:09 marco
|
||||||
|
* twin32fileattributedata
|
||||||
|
|
||||||
|
Revision 1.20 2003/01/02 22:07:00 peter
|
||||||
* missing items
|
* missing items
|
||||||
|
|
||||||
Revision 1.19 2002/12/15 20:24:17 peter
|
Revision 1.19 2002/12/15 20:24:17 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user