System.Zip.TZipEndOfCentralHeader

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

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

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.Zip.pas
System.Zip.hpp
System.Zip System.Zip


Beschreibung

Ist der letzte Block, der in die ZIP-Datei geschrieben wird.

Dieser Record wird intern von TZipFile verwendet.

Siehe auch