Packed Record TBZStreamRec

Hierarchy
Methods
Properties

Unit

Declaration

type TBZStreamRec = packed record

Description

Internal structure. Ignore.

Overview

Fields

next_in: PChar;
avail_in: Integer;
total_in_lo32: Integer;
total_in_hi32: Integer;
next_out: PChar;
avail_out: Integer;
total_out_lo32: Integer;
total_out_hi32: Integer;
state: Pointer;
bzalloc: TAlloc;
bzfree: TFree;
opaque: Pointer;

Description

Fields

next_in: PChar;
 
avail_in: Integer;

next input byte

total_in_lo32: Integer;

number of bytes available at next_in

total_in_hi32: Integer;

total nb of input bytes read so far

next_out: PChar;
 
avail_out: Integer;

next output byte should be put here

total_out_lo32: Integer;

remaining free space at next_out

total_out_hi32: Integer;

total nb of bytes output so far

state: Pointer;
 
bzalloc: TAlloc;
 
bzfree: TFree;

used to allocate the internal state

opaque: Pointer;

used to free the internal state


Generated by PasDoc 0.15.0.