System.ZLib.z_stream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

z_stream = record

C++

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

Properties

Type Visibility Source Unit Parent
record
struct
public
System.ZLib.pas
System.ZLib.hpp
System.ZLib System.ZLib

Description

z_stream is a record that is used to compress and decompress data.

For more information, see the original documentation provided by ZLib library.

See Also