blob: 0ae0a3ded8318575fdae8d46616aca7a7a8897ac [file] [log] [blame]
Werner Lemberg1f7f0e82001-06-06 17:30:41 +00001/***************************************************************************/
2/* */
3/* cfferrs.h */
4/* */
5/* CFF error codes (specification only). */
6/* */
7/* Copyright 2001 by */
8/* David Turner, Robert Wilhelm, and Werner Lemberg. */
9/* */
10/* This file is part of the FreeType project, and may only be used, */
11/* modified, and distributed under the terms of the FreeType project */
12/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13/* this file you indicate that you have read the license and */
14/* understand and accept it fully. */
15/* */
16/***************************************************************************/
17
18
19 /*************************************************************************/
20 /* */
21 /* This file is used to define the CFF error enumeration constants. */
22 /* */
23 /*************************************************************************/
24
25#ifndef __CFFERRS_H__
26#define __CFFERRS_H__
27
28#include FT_MODULE_ERRORS_H
29
30#undef __FTERRORS_H__
31
Werner Lemberg00a22072001-06-18 10:35:00 +000032#define FT_ERRORDEF_( e, v, s ) \
33 FT_ERRORDEF( CFF_Err_ ## e, v + FT_Mod_Err_CFF, s )
34#define FT_NOERRORDEF_( e, v, s ) \
35 FT_ERRORDEF( CFF_Err_ ## e, v, s )
Werner Lemberg1f7f0e82001-06-06 17:30:41 +000036
37#define FT_ERROR_START_LIST enum {
38#define FT_ERROR_END_LIST CFF_Err_Max };
39
40#include FT_ERRORS_H
41
42#endif /* __CFFERRS_H__ */
43
44
45/* END */