System.ZLib.gz_header

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

gz_header = record

C++

struct DECLSPEC_DRECORD gz_header
{
public:
    int text;
    unsigned time;
    int xflags;
    int os;
    System::Byte *extra;
    unsigned extra_len;
    unsigned extra_max;
    char *name;
    unsigned name_max;
    char *comment;
    unsigned comm_max;
    int hcrc;
    int done;
};

Properties

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

Description

gz_header contains information that is passed to and from System.ZLib routines.

Use the gz_header record when dealing with gzip streams.

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

See Also