System.Zip.TZipEndOfCentralHeader

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TZipEndOfCentralHeader = packed record

C++

struct DECLSPEC_DRECORD TZipEndOfCentralHeader
{
public:
    System::UInt16 DiskNumber;
    System::UInt16 CentralDirStartDisk;
    System::UInt16 NumEntriesThisDisk;
    System::UInt16 CentralDirEntries;
    System::UInt32 CentralDirSize;
    System::UInt32 CentralDirOffset;
    System::UInt16 CommentLength;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Zip.pas
System.Zip.hpp
System.Zip System.Zip

Description

Is the final block written to the .zip file.

This record is internally used by TZipFile.

See Also