System.ZLib.z_stream

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

z_stream = record

C++

struct DECLSPEC_DRECORD z_stream
{
public:
    System::Byte *next_in;
    unsigned avail_in;
    unsigned total_in;
    System::Byte *next_out;
    unsigned avail_out;
    unsigned total_out;
    char *msg;
    internal_state *state;
    alloc_func zalloc;
    free_func zfree;
    void *opaque;
    int data_type;
    unsigned adler;
    unsigned reserved;
};

プロパティ

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

説明

z_stream は、データの圧縮と解凍に使用されるレコードです。


詳細は、ZLib ライブラリから提供される元のドキュメントを参照してください。

関連項目