System.ZLib._z_errmsg

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

_z_errmsg: array [0..9] of MarshaledAString = ( 'need dictionary',      // Z_NEED_DICT      (2)  //do not localize 'stream end',           // Z_STREAM_END     (1)  //do not localize '',                     // Z_OK             (0)  //do not localize 'file error',           // Z_ERRNO          (-1) //do not localize 'stream error',         // Z_STREAM_ERROR   (-2) //do not localize 'data error',           // Z_DATA_ERROR     (-3) //do not localize 'insufficient memory',  // Z_MEM_ERROR      (-4) //do not localize 'buffer error',         // Z_BUF_ERROR      (-5) //do not localize 'incompatible version', // Z_VERSION_ERROR  (-6) //do not localize ''                                               //do not localize );

C++

extern DELPHI_PACKAGE System::StaticArray<char *, 10> _z_errmsg;

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
const
variable
public
System.ZLib.pas
System.ZLib.hpp
System.ZLib System.ZLib

Beschreibung

_z_errmsg repräsentiert ein Array der möglichen Komprimierungs- und Dekomprimierungs-Exceptions.

EZCompressionError und EZDecompressionError lösen mit _z_errmsg Komprimierungs- und Dekomprimierungs-Exceptions aus.

Siehe auch