API: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

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!