System.ZLib.z_stream

De RAD Studio API Documentation
Aller à : navigation, rechercher

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

Propriétés

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

Description

z_stream est un enregistrement utilisé pour compresser et décompresser les données.

Pour de plus amples informations, voir la documentation originale fournie par la bibliothèque ZLib.

Voir aussi