File: errors.h

package info (click to toggle)
librtfcomp 1.1-5.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,564 kB
  • ctags: 120
  • sloc: sh: 8,867; ansic: 1,108; makefile: 99
file content (30 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (3)
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