System.ZLib._z_errmsg

提供: RAD Studio API Documentation
移動先: 案内検索

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;

プロパティ

種類 可視性 ソース ユニット
const
variable
public
System.ZLib.pas
System.ZLib.hpp
System.ZLib System.ZLib

説明

_z_errmsg は、圧縮および解凍で発生する可能性がある例外の配列を表します。


EZCompressionError および EZDecompressionError では、_z_errmsg を使って圧縮例外および解凍例外を発生させます。

関連項目