System.Zip.TZipEndOfCentralHeader

From RAD Studio API Documentation
Jump to: navigation, search

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;
};

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