表示: Delphi C++
表示設定

System.Zip.TZipEndOfCentralHeader

提供:XE2 API Documentation
移動: 案内, 検索

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

プロパティ

種類 可視性 ソース ユニット
struct
class
public
System.Zip.pas
System.Zip.hpp
System.Zip System.Zip


説明

.zip ファイルに書き込まれる最後のブロックです。


このレコードは、TZipFile で内部的に使われます。

関連項目

以前のバージョン
他の言語