2018-06-03 09:01:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* pshnterr.h
|
|
|
|
*
|
|
|
|
* PS Hinter error codes (specification only).
|
|
|
|
*
|
2022-01-11 10:54:10 +01:00
|
|
|
* Copyright (C) 2003-2022 by
|
2018-06-03 09:01:17 +02:00
|
|
|
* David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* license, LICENSE.TXT. By continuing to use, modify, or distribute
|
|
|
|
* this file you indicate that you have read the license and
|
|
|
|
* understand and accept it fully.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* This file is used to define the PSHinter error enumeration constants.
|
|
|
|
*
|
|
|
|
*/
|
2003-06-22 17:34:38 +02:00
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef PSHNTERR_H_
|
|
|
|
#define PSHNTERR_H_
|
2003-06-22 17:34:38 +02:00
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/ftmoderr.h>
|
2003-06-22 17:34:38 +02:00
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#undef FTERRORS_H_
|
2003-06-22 17:34:38 +02:00
|
|
|
|
Prepare source code for amalgamation.
* src\autofit\aferrors.h, src\bdf\bdferror.h, src\bzip2\ftbzip2.c,
src\cache\ftcerror.h, src\cff\cfferrs.h, src\cid\ciderrs.h,
src\gxvalid\gxverror.h, src\gzip\ftgzip.c, src\lzw\ftlzw.c,
src\otvalid\otverror.h, src\pcf\pcferror.h, src\pfr\pfrerror.h,
src\psaux\psauxerr.h, src\pshinter\pshnterr.h,
src\psnames\psnamerr.h, src\raster\rasterrs.h, src\sfnt\sferrors.h,
src\smooth\ftsmerrs.h, src\truetype\tterrors.h,
src\type1\t1errors.h, src\type42\t42error.h, src\winfonts\fnterrs.h:
Add #undef FT_ERR_PREFIX before #define FT_ERR_PREFIX.
2012-03-08 06:04:03 +01:00
|
|
|
#undef FT_ERR_PREFIX
|
2003-06-22 17:34:38 +02:00
|
|
|
#define FT_ERR_PREFIX PSH_Err_
|
2003-06-23 21:26:53 +02:00
|
|
|
#define FT_ERR_BASE FT_Mod_Err_PShinter
|
2003-06-22 17:34:38 +02:00
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/fterrors.h>
|
2003-06-22 17:34:38 +02:00
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* PSHNTERR_H_ */
|
2003-06-22 17:34:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|