System.ZLib.z_stream
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;
    char * msg;
    Pinternal_state state;
    alloc_func zalloc;
    free_func zfree;
    void *opaque;
    int data_type;
    System::LongWord adler;
    System::LongWord 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.