System.Zip.TZipEndOfCentralHeader
Delphi
TZipEndOfCentralHeader = packed record
DiskNumber: UInt16;
CentralDirStartDisk: UInt16;
NumEntriesThisDisk: UInt16;
CentralDirEntries: UInt16;
CentralDirSize: UInt32;
CentralDirOffset: UInt32;
CommentLength: UInt16;
{Comment: RawByteString}
end;
C++
struct DECLSPEC_DRECORD TZipEndOfCentralHeader
{
public:
System::Word DiskNumber;
System::Word CentralDirStartDisk;
System::Word NumEntriesThisDisk;
System::Word CentralDirEntries;
unsigned CentralDirSize;
unsigned CentralDirOffset;
System::Word CommentLength;
};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
record struct |
public | System.Zip.pas System.Zip.hpp |
System.Zip | System.Zip |
説明
.zip ファイルに書き込まれる最後のブロックです。
このレコードは、TZipFile で内部的に使われます。