System.Zip.TZipEndOfCentralHeader

De RAD Studio API Documentation
Aller à : navigation, rechercher

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

Propriétés

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


Description

Représente le bloc final écrit dans le fichier .zip.

Cet enregistrement est utilisé en interne par TZipFile.

Voir aussi