1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
///////////////////////////////////////////////////////////////////////////////
// ERRORS.H
//
// Include file containing error codes for RTF compression library
//
// Dr J A Gow : 28/02/2007
//
// This file is distributed under the terms and conditions of the LGPL - please
// see the file LICENCE in the package root directory.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef _ERRORS_H_
#define _ERRORS_H_
//
// Error codes
enum {
LZRTF_ERR_NOERROR=0,
LZRTF_ERR_NOMEM,
LZRTF_ERR_BADCOMPRESSEDSIZE,
LZRTF_ERR_BADCRC,
LZRTF_ERR_BADARGS,
LZRTF_ERR_BADMAGIC,
LZRTF_ERR_BADINPUT,
LZRTF_ERR_MAXERRCODE
};
#endif
|