Don't use macro names that contain `__' [1/2].

Such macro names are reserved for both C and C++.

*/*: Replace macros of the form `__XXX_H__' with `XXX_H_'.
This commit is contained in:
Werner Lemberg 2016-01-12 21:37:13 +01:00
parent f53bab9381
commit 37412ff9f4
239 changed files with 754 additions and 735 deletions

View File

@ -1,3 +1,11 @@
2016-01-12 Werner Lemberg <wl@gnu.org>
Don't use macro names that contain `__' [1/2].
Such macro names are reserved for both C and C++.
*/*: Replace macros of the form `__XXX_H__' with `XXX_H_'.
2016-01-10 Jered Gray <jegray@google.com> 2016-01-10 Jered Gray <jegray@google.com>
[cff] Fix usage of `|' operator. [cff] Fix usage of `|' operator.

View File

@ -1,4 +1,4 @@
#if defined( __GXVALID_H__ ) #if defined( GXVALID_H_ )
#pragma warn -aus /* too many unevaluated variables in gxvalid */ #pragma warn -aus /* too many unevaluated variables in gxvalid */
#endif #endif

View File

@ -18,8 +18,8 @@ To compile FreeType 2 as a library the following changes must be applied:
- The file `freetype2/include/Ft2build.h' must be patched as follows to - The file `freetype2/include/Ft2build.h' must be patched as follows to
include ATARI.H: include ATARI.H:
#ifndef __FT2_BUILD_GENERIC_H__ #ifndef FT2_BUILD_GENERIC_H_
#define __FT2_BUILD_GENERIC_H__ #define FT2_BUILD_GENERIC_H_
#include "ATARI.H" #include "ATARI.H"
@ -43,8 +43,8 @@ ge
- In der Datei freetype2/include/Ft2build.h muss zu Beginn - In der Datei freetype2/include/Ft2build.h muss zu Beginn
ein #include "ATARI.H" wie folgt eingef<65>gt werden: ein #include "ATARI.H" wie folgt eingef<65>gt werden:
#ifndef __FT2_BUILD_GENERIC_H__ #ifndef FT2_BUILD_GENERIC_H_
#define __FT2_BUILD_GENERIC_H__ #define FT2_BUILD_GENERIC_H_
#include "ATARI.H" #include "ATARI.H"

View File

@ -34,8 +34,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTCONFIG_H__ #ifndef FTCONFIG_H_
#define __FTCONFIG_H__ #define FTCONFIG_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_CONFIG_OPTIONS_H #include FT_CONFIG_OPTIONS_H
@ -491,7 +491,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCONFIG_H__ */ #endif /* FTCONFIG_H_ */
/* END */ /* END */

View File

@ -33,8 +33,8 @@
/* */ /* */
/*************************************************************************/ /*************************************************************************/
#ifndef __FTCONFIG_H__ #ifndef FTCONFIG_H_
#define __FTCONFIG_H__ #define FTCONFIG_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_CONFIG_OPTIONS_H #include FT_CONFIG_OPTIONS_H
@ -434,7 +434,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCONFIG_H__ */ #endif /* FTCONFIG_H_ */
/* END */ /* END */

View File

@ -27,14 +27,14 @@
* *
*/ */
#ifndef __FT2BUILD_H__ #ifndef FT2BUILD_H_
#define __FT2BUILD_H__ #define FT2BUILD_H_
#define FT_CONFIG_OPTIONS_H <ftoption.h> #define FT_CONFIG_OPTIONS_H <ftoption.h>
#include <freetype/config/ftheader.h> #include <freetype/config/ftheader.h>
#endif /* __FT2BUILD_H__ */ #endif /* FT2BUILD_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTOPTION_H__ #ifndef FTOPTION_H_
#define __FTOPTION_H__ #define FTOPTION_H_
#include <ft2build.h> #include <ft2build.h>
@ -898,7 +898,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTOPTION_H__ */ #endif /* FTOPTION_H_ */
/* END */ /* END */

View File

@ -117,15 +117,15 @@ IV. Overriding default configuration and module headers
name the configuration headers. To do so, you need a custom name the configuration headers. To do so, you need a custom
`ft2build.h' whose content can be as simple as: `ft2build.h' whose content can be as simple as:
#ifndef __FT2_BUILD_MY_PLATFORM_H__ #ifndef FT2_BUILD_MY_PLATFORM_H_
#define __FT2_BUILD_MY_PLATFORM_H__ #define FT2_BUILD_MY_PLATFORM_H_
#define FT_CONFIG_OPTIONS_H <custom/my-ftoption.h> #define FT_CONFIG_OPTIONS_H <custom/my-ftoption.h>
#define FT_CONFIG_MODULES_H <custom/my-ftmodule.h> #define FT_CONFIG_MODULES_H <custom/my-ftmodule.h>
#include <freetype/config/ftheader.h> #include <freetype/config/ftheader.h>
#endif /* __FT2_BUILD_MY_PLATFORM_H__ */ #endif /* FT2_BUILD_MY_PLATFORM_H_ */
Place those files in a separate directory, e.g., Place those files in a separate directory, e.g.,

View File

@ -35,8 +35,8 @@
/* */ /* */
/*************************************************************************/ /*************************************************************************/
#ifndef __FTCONFIG_H__ #ifndef FTCONFIG_H_
#define __FTCONFIG_H__ #define FTCONFIG_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_CONFIG_OPTIONS_H #include FT_CONFIG_OPTIONS_H
@ -461,7 +461,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCONFIG_H__ */ #endif /* FTCONFIG_H_ */
/* END */ /* END */

View File

@ -15,8 +15,8 @@
/* */ /* */
/***************************************************************************/ /***************************************************************************/
#ifndef __FT_HEADER_H__ #ifndef FTHEADER_H_
#define __FT_HEADER_H__ #define FTHEADER_H_
/*@***********************************************************************/ /*@***********************************************************************/
@ -828,7 +828,7 @@
#endif /* FT2_BUILD_LIBRARY */ #endif /* FT2_BUILD_LIBRARY */
#endif /* __FT2_BUILD_H__ */ #endif /* FTHEADER_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTOPTION_H__ #ifndef FTOPTION_H_
#define __FTOPTION_H__ #define FTOPTION_H_
#include <ft2build.h> #include <ft2build.h>
@ -898,7 +898,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTOPTION_H__ */ #endif /* FTOPTION_H_ */
/* END */ /* END */

View File

@ -23,14 +23,13 @@
/* FreeType normally requires. It also defines macros to rename the */ /* FreeType normally requires. It also defines macros to rename the */
/* standard functions within the FreeType source code. */ /* standard functions within the FreeType source code. */
/* */ /* */
/* Load a file which defines __FTSTDLIB_H__ before this one to override */ /* Load a file which defines FTSTDLIB_H_ before this one to override it. */
/* it. */
/* */ /* */
/*************************************************************************/ /*************************************************************************/
#ifndef __FTSTDLIB_H__ #ifndef FTSTDLIB_H_
#define __FTSTDLIB_H__ #define FTSTDLIB_H_
#include <stddef.h> #include <stddef.h>
@ -168,7 +167,7 @@
#include <stdarg.h> #include <stdarg.h>
#endif /* __FTSTDLIB_H__ */ #endif /* FTSTDLIB_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FREETYPE_H__ #ifndef FREETYPE_H_
#define __FREETYPE_H__ #define FREETYPE_H_
#ifndef FT_FREETYPE_H #ifndef FT_FREETYPE_H
@ -4278,7 +4278,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FREETYPE_H__ */ #endif /* FREETYPE_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTADVANC_H__ #ifndef FTADVANC_H_
#define __FTADVANC_H__ #define FTADVANC_H_
#include <ft2build.h> #include <ft2build.h>
@ -181,7 +181,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTADVANC_H__ */ #endif /* FTADVANC_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTAUTOH_H__ #ifndef FTAUTOH_H_
#define __FTAUTOH_H__ #define FTAUTOH_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -497,7 +497,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTAUTOH_H__ */ #endif /* FTAUTOH_H_ */
/* END */ /* END */

View File

@ -27,8 +27,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTBBOX_H__ #ifndef FTBBOX_H_
#define __FTBBOX_H__ #define FTBBOX_H_
#include <ft2build.h> #include <ft2build.h>
@ -90,7 +90,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTBBOX_H__ */ #endif /* FTBBOX_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTBDF_H__ #ifndef FTBDF_H_
#define __FTBDF_H__ #define FTBDF_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -204,7 +204,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTBDF_H__ */ #endif /* FTBDF_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTBITMAP_H__ #ifndef FTBITMAP_H_
#define __FTBITMAP_H__ #define FTBITMAP_H_
#include <ft2build.h> #include <ft2build.h>
@ -234,7 +234,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTBITMAP_H__ */ #endif /* FTBITMAP_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTBZIP2_H__ #ifndef FTBZIP2_H_
#define __FTBZIP2_H__ #define FTBZIP2_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -96,7 +96,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTBZIP2_H__ */ #endif /* FTBZIP2_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTCACHE_H__ #ifndef FTCACHE_H_
#define __FTCACHE_H__ #define FTCACHE_H_
#include <ft2build.h> #include <ft2build.h>
@ -1051,7 +1051,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCACHE_H__ */ #endif /* FTCACHE_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTCFFDRV_H__ #ifndef FTCFFDRV_H_
#define __FTCFFDRV_H__ #define FTCFFDRV_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -256,7 +256,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCFFDRV_H__ */ #endif /* FTCFFDRV_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTCID_H__ #ifndef FTCID_H_
#define __FTCID_H__ #define FTCID_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -162,7 +162,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCID_H__ */ #endif /* FTCID_H_ */
/* END */ /* END */

View File

@ -72,13 +72,13 @@
/* */ /* */
/* This macro ends the list. */ /* This macro ends the list. */
/* */ /* */
/* Additionally, you have to undefine `__FTERRORS_H__' before */ /* Additionally, you have to undefine `FTERRORS_H_' before #including */
/* #including this file. */ /* this file. */
/* */ /* */
/* Here is a simple example. */ /* Here is a simple example. */
/* */ /* */
/* { */ /* { */
/* #undef __FTERRORS_H__ */ /* #undef FTERRORS_H_ */
/* #define FT_ERRORDEF( e, v, s ) { e, s }, */ /* #define FT_ERRORDEF( e, v, s ) { e, s }, */
/* #define FT_ERROR_START_LIST { */ /* #define FT_ERROR_START_LIST { */
/* #define FT_ERROR_END_LIST { 0, NULL } }; */ /* #define FT_ERROR_END_LIST { 0, NULL } }; */
@ -99,8 +99,8 @@
/* */ /* */
#ifndef __FTERRORS_H__ #ifndef FTERRORS_H_
#define __FTERRORS_H__ #define FTERRORS_H_
/* include module base error codes */ /* include module base error codes */
@ -210,7 +210,7 @@
#undef FT_ERR_PREFIX #undef FT_ERR_PREFIX
#endif #endif
#endif /* __FTERRORS_H__ */ #endif /* FTERRORS_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTFNTFMT_H__ #ifndef FTFNTFMT_H_
#define __FTFNTFMT_H__ #define FTFNTFMT_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -89,4 +89,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTFNTFMT_H__ */ #endif /* FTFNTFMT_H_ */
/* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef _FT_GASP_H_ #ifndef FTGASP_H_
#define _FT_GASP_H_ #define FTGASP_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -123,7 +123,7 @@
/* */ /* */
#endif /* _FT_GASP_H_ */ #endif /* FTGASP_H_ */
/* END */ /* END */

View File

@ -29,8 +29,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTGLYPH_H__ #ifndef FTGLYPH_H_
#define __FTGLYPH_H__ #define FTGLYPH_H_
#include <ft2build.h> #include <ft2build.h>
@ -594,7 +594,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTGLYPH_H__ */ #endif /* FTGLYPH_H_ */
/* END */ /* END */

View File

@ -25,8 +25,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTGXVAL_H__ #ifndef FTGXVAL_H_
#define __FTGXVAL_H__ #define FTGXVAL_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -351,7 +351,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTGXVAL_H__ */ #endif /* FTGXVAL_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTGZIP_H__ #ifndef FTGZIP_H_
#define __FTGZIP_H__ #define FTGZIP_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -142,7 +142,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTGZIP_H__ */ #endif /* FTGZIP_H_ */
/* END */ /* END */

View File

@ -24,8 +24,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTIMAGE_H__ #ifndef FTIMAGE_H_
#define __FTIMAGE_H__ #define FTIMAGE_H_
/* _STANDALONE_ is from ftgrays.c */ /* _STANDALONE_ is from ftgrays.c */
@ -1203,7 +1203,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTIMAGE_H__ */ #endif /* FTIMAGE_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTINCREM_H__ #ifndef FTINCREM_H_
#define __FTINCREM_H__ #define FTINCREM_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -348,7 +348,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTINCREM_H__ */ #endif /* FTINCREM_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FT_LCD_FILTER_H__ #ifndef FTLCDFIL_H_
#define __FT_LCD_FILTER_H__ #define FTLCDFIL_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -286,7 +286,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FT_LCD_FILTER_H__ */ #endif /* FTLCDFIL_H_ */
/* END */ /* END */

View File

@ -24,8 +24,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTLIST_H__ #ifndef FTLIST_H_
#define __FTLIST_H__ #define FTLIST_H_
#include <ft2build.h> #include <ft2build.h>
@ -270,7 +270,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTLIST_H__ */ #endif /* FTLIST_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTLZW_H__ #ifndef FTLZW_H_
#define __FTLZW_H__ #define FTLZW_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -93,7 +93,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTLZW_H__ */ #endif /* FTLZW_H_ */
/* END */ /* END */

View File

@ -25,8 +25,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTMAC_H__ #ifndef FTMAC_H_
#define __FTMAC_H__ #define FTMAC_H_
#include <ft2build.h> #include <ft2build.h>
@ -268,7 +268,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTMAC_H__ */ #endif /* FTMAC_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTMM_H__ #ifndef FTMM_H_
#define __FTMM_H__ #define FTMM_H_
#include <ft2build.h> #include <ft2build.h>
@ -378,7 +378,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTMM_H__ */ #endif /* FTMM_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTMODAPI_H__ #ifndef FTMODAPI_H_
#define __FTMODAPI_H__ #define FTMODAPI_H_
#include <ft2build.h> #include <ft2build.h>
@ -666,7 +666,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTMODAPI_H__ */ #endif /* FTMODAPI_H_ */
/* END */ /* END */

View File

@ -74,7 +74,7 @@
/* with something like */ /* with something like */
/* */ /* */
/* { */ /* { */
/* #undef __FTMODERR_H__ */ /* #undef FTMODERR_H_ */
/* #define FT_MODERRDEF( e, v, s ) { FT_Mod_Err_ ## e, s }, */ /* #define FT_MODERRDEF( e, v, s ) { FT_Mod_Err_ ## e, s }, */
/* #define FT_MODERR_START_LIST { */ /* #define FT_MODERR_START_LIST { */
/* #define FT_MODERR_END_LIST { 0, 0 } }; */ /* #define FT_MODERR_END_LIST { 0, 0 } }; */
@ -91,8 +91,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTMODERR_H__ #ifndef FTMODERR_H_
#define __FTMODERR_H__ #define FTMODERR_H_
/*******************************************************************/ /*******************************************************************/
@ -188,7 +188,7 @@
#undef FT_NEED_EXTERN_C #undef FT_NEED_EXTERN_C
#endif /* __FTMODERR_H__ */ #endif /* FTMODERR_H_ */
/* END */ /* END */

View File

@ -27,8 +27,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTOTVAL_H__ #ifndef FTOTVAL_H_
#define __FTOTVAL_H__ #define FTOTVAL_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -198,7 +198,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTOTVAL_H__ */ #endif /* FTOTVAL_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTOUTLN_H__ #ifndef FTOUTLN_H_
#define __FTOUTLN_H__ #define FTOUTLN_H_
#include <ft2build.h> #include <ft2build.h>
@ -563,7 +563,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTOUTLN_H__ */ #endif /* FTOUTLN_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTPFR_H__ #ifndef FTPFR_H_
#define __FTPFR_H__ #define FTPFR_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -166,7 +166,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTPFR_H__ */ #endif /* FTPFR_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTRENDER_H__ #ifndef FTRENDER_H_
#define __FTRENDER_H__ #define FTRENDER_H_
#include <ft2build.h> #include <ft2build.h>
@ -226,7 +226,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTRENDER_H__ */ #endif /* FTRENDER_H_ */
/* END */ /* END */

View File

@ -25,8 +25,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTSIZES_H__ #ifndef FTSIZES_H_
#define __FTSIZES_H__ #define FTSIZES_H_
#include <ft2build.h> #include <ft2build.h>
@ -153,7 +153,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTSIZES_H__ */ #endif /* FTSIZES_H_ */
/* END */ /* END */

View File

@ -19,8 +19,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FT_SFNT_NAMES_H__ #ifndef FTSNAMES_H_
#define __FT_SFNT_NAMES_H__ #define FTSNAMES_H_
#include <ft2build.h> #include <ft2build.h>
@ -194,7 +194,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FT_SFNT_NAMES_H__ */ #endif /* FTSNAMES_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FT_STROKE_H__ #ifndef FTSTROKE_H_
#define __FT_STROKE_H__ #define FTSTROKE_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_OUTLINE_H #include FT_OUTLINE_H
@ -774,7 +774,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FT_STROKE_H__ */ #endif /* FTSTROKE_H_ */
/* END */ /* END */

View File

@ -41,8 +41,8 @@
/* adapted to the particular needs. */ /* adapted to the particular needs. */
#ifndef __FTSYNTH_H__ #ifndef FTSYNTH_H_
#define __FTSYNTH_H__ #define FTSYNTH_H_
#include <ft2build.h> #include <ft2build.h>
@ -78,7 +78,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTSYNTH_H__ */ #endif /* FTSYNTH_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTSYSTEM_H__ #ifndef FTSYSTEM_H_
#define __FTSYSTEM_H__ #define FTSYSTEM_H_
#include <ft2build.h> #include <ft2build.h>
@ -349,7 +349,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTSYSTEM_H__ */ #endif /* FTSYSTEM_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTTRIGON_H__ #ifndef FTTRIGON_H_
#define __FTTRIGON_H__ #define FTTRIGON_H_
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -344,7 +344,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTTRIGON_H__ */ #endif /* FTTRIGON_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTTTDRV_H__ #ifndef FTTTDRV_H_
#define __FTTTDRV_H__ #define FTTTDRV_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -304,7 +304,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTTTDRV_H__ */ #endif /* FTTTDRV_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTTYPES_H__ #ifndef FTTYPES_H_
#define __FTTYPES_H__ #define FTTYPES_H_
#include <ft2build.h> #include <ft2build.h>
@ -596,7 +596,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTTYPES_H__ */ #endif /* FTTYPES_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTWINFNT_H__ #ifndef FTWINFNT_H_
#define __FTWINFNT_H__ #define FTWINFNT_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
@ -264,7 +264,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTWINFNT_H__ */ #endif /* FTWINFNT_H_ */
/* END */ /* END */

View File

@ -24,8 +24,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __AUTOHINT_H__ #ifndef AUTOHINT_H_
#define __AUTOHINT_H__ #define AUTOHINT_H_
/*************************************************************************/ /*************************************************************************/
@ -238,7 +238,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AUTOHINT_H__ */ #endif /* AUTOHINT_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTCALC_H__ #ifndef FTCALC_H_
#define __FTCALC_H__ #define FTCALC_H_
#include <ft2build.h> #include <ft2build.h>
@ -412,7 +412,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTCALC_H__ */ #endif /* FTCALC_H_ */
/* END */ /* END */

View File

@ -21,8 +21,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTDEBUG_H__ #ifndef FTDEBUG_H_
#define __FTDEBUG_H__ #define FTDEBUG_H_
#include <ft2build.h> #include <ft2build.h>
@ -249,7 +249,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTDEBUG_H__ */ #endif /* FTDEBUG_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTDRIVER_H__ #ifndef FTDRIVER_H_
#define __FTDRIVER_H__ #define FTDRIVER_H_
#include <ft2build.h> #include <ft2build.h>
@ -403,7 +403,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTDRIVER_H__ */ #endif /* FTDRIVER_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTGLOADR_H__ #ifndef FTGLOADR_H_
#define __FTGLOADR_H__ #define FTGLOADR_H_
#include <ft2build.h> #include <ft2build.h>
@ -148,7 +148,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTGLOADR_H__ */ #endif /* FTGLOADR_H_ */
/* END */ /* END */

View File

@ -39,8 +39,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTHASH_H__ #ifndef FTHASH_H_
#define __FTHASH_H__ #define FTHASH_H_
#include <ft2build.h> #include <ft2build.h>
@ -130,7 +130,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTHASH_H__ */ #endif /* FTHASH_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTMEMORY_H__ #ifndef FTMEMORY_H_
#define __FTMEMORY_H__ #define FTMEMORY_H_
#include <ft2build.h> #include <ft2build.h>
@ -380,7 +380,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTMEMORY_H__ */ #endif /* FTMEMORY_H_ */
/* END */ /* END */

View File

@ -23,8 +23,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTOBJS_H__ #ifndef FTOBJS_H_
#define __FTOBJS_H__ #define FTOBJS_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_RENDER_H #include FT_RENDER_H
@ -1568,7 +1568,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTOBJS_H__ */ #endif /* FTOBJS_H_ */
/* END */ /* END */

View File

@ -23,8 +23,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTPIC_H__ #ifndef FTPIC_H_
#define __FTPIC_H__ #define FTPIC_H_
FT_BEGIN_HEADER FT_BEGIN_HEADER
@ -65,7 +65,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTPIC_H__ */ #endif /* FTPIC_H_ */
/* END */ /* END */

View File

@ -21,8 +21,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTRFORK_H__ #ifndef FTRFORK_H_
#define __FTRFORK_H__ #define FTRFORK_H_
#include <ft2build.h> #include <ft2build.h>
@ -260,7 +260,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTRFORK_H__ */ #endif /* FTRFORK_H_ */
/* END */ /* END */

View File

@ -28,8 +28,8 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FTSERV_H__ #ifndef FTSERV_H_
#define __FTSERV_H__ #define FTSERV_H_
FT_BEGIN_HEADER FT_BEGIN_HEADER
@ -757,7 +757,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTSERV_H__ */ #endif /* FTSERV_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTSTREAM_H__ #ifndef FTSTREAM_H_
#define __FTSTREAM_H__ #define FTSTREAM_H_
#include <ft2build.h> #include <ft2build.h>
@ -530,7 +530,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTSTREAM_H__ */ #endif /* FTSTREAM_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __FTVALID_H__ #ifndef FTVALID_H_
#define __FTVALID_H__ #define FTVALID_H_
#include <ft2build.h> #include <ft2build.h>
#include FT_CONFIG_STANDARD_LIBRARY_H /* for ft_setjmp and ft_longjmp */ #include FT_CONFIG_STANDARD_LIBRARY_H /* for ft_setjmp and ft_longjmp */
@ -153,7 +153,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __FTVALID_H__ */ #endif /* FTVALID_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __PSAUX_H__ #ifndef PSAUX_H_
#define __PSAUX_H__ #define PSAUX_H_
#include <ft2build.h> #include <ft2build.h>
@ -873,7 +873,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __PSAUX_H__ */ #endif /* PSAUX_H_ */
/* END */ /* END */

View File

@ -18,8 +18,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __PSHINTS_H__ #ifndef PSHINTS_H_
#define __PSHINTS_H__ #define PSHINTS_H_
#include <ft2build.h> #include <ft2build.h>
@ -716,7 +716,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __PSHINTS_H__ */ #endif /* PSHINTS_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVBDF_H__ #ifndef SVBDF_H_
#define __SVBDF_H__ #define SVBDF_H_
#include FT_BDF_H #include FT_BDF_H
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -76,7 +76,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVBDF_H__ */ #endif /* SVBDF_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVCID_H__ #ifndef SVCID_H_
#define __SVCID_H__ #define SVCID_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -84,7 +84,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVCID_H__ */ #endif /* SVCID_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVFNTFMT_H__ #ifndef SVFNTFMT_H_
#define __SVFNTFMT_H__ #define SVFNTFMT_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -49,7 +49,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVFNTFMT_H__ */ #endif /* SVFNTFMT_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVGLDICT_H__ #ifndef SVGLDICT_H_
#define __SVGLDICT_H__ #define SVGLDICT_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -85,4 +85,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVGLDICT_H__ */ #endif /* SVGLDICT_H_ */
/* END */

View File

@ -25,8 +25,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVGXVAL_H__ #ifndef SVGXVAL_H_
#define __SVGXVAL_H__ #define SVGXVAL_H_
#include FT_GX_VALIDATE_H #include FT_GX_VALIDATE_H
#include FT_INTERNAL_VALIDATE_H #include FT_INTERNAL_VALIDATE_H
@ -66,7 +66,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVGXVAL_H__ */ #endif /* SVGXVAL_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVKERN_H__ #ifndef SVKERN_H_
#define __SVKERN_H__ #define SVKERN_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_TRUETYPE_TABLES_H #include FT_TRUETYPE_TABLES_H
@ -45,7 +45,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVKERN_H__ */ #endif /* SVKERN_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVMM_H__ #ifndef SVMM_H_
#define __SVMM_H__ #define SVMM_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -107,7 +107,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVMM_H__ */ #endif /* SVMM_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVOTVAL_H__ #ifndef SVOTVAL_H_
#define __SVOTVAL_H__ #define SVOTVAL_H_
#include FT_OPENTYPE_VALIDATE_H #include FT_OPENTYPE_VALIDATE_H
#include FT_INTERNAL_VALIDATE_H #include FT_INTERNAL_VALIDATE_H
@ -49,7 +49,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVOTVAL_H__ */ #endif /* SVOTVAL_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVPFR_H__ #ifndef SVPFR_H_
#define __SVPFR_H__ #define SVPFR_H_
#include FT_PFR_H #include FT_PFR_H
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -60,7 +60,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVPFR_H__ */ #endif /* SVPFR_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVPOSTNM_H__ #ifndef SVPOSTNM_H_
#define __SVPOSTNM_H__ #define SVPOSTNM_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
@ -75,7 +75,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVPOSTNM_H__ */ #endif /* SVPOSTNM_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVPROP_H__ #ifndef SVPROP_H_
#define __SVPROP_H__ #define SVPROP_H_
FT_BEGIN_HEADER FT_BEGIN_HEADER
@ -75,7 +75,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVPROP_H__ */ #endif /* SVPROP_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVPSCMAP_H__ #ifndef SVPSCMAP_H_
#define __SVPSCMAP_H__ #define SVPSCMAP_H_
#include FT_INTERNAL_OBJECTS_H #include FT_INTERNAL_OBJECTS_H
@ -171,7 +171,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVPSCMAP_H__ */ #endif /* SVPSCMAP_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVPSINFO_H__ #ifndef SVPSINFO_H_
#define __SVPSINFO_H__ #define SVPSINFO_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_INTERNAL_TYPE1_TYPES_H #include FT_INTERNAL_TYPE1_TYPES_H
@ -105,7 +105,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVPSINFO_H__ */ #endif /* SVPSINFO_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVSFNT_H__ #ifndef SVSFNT_H_
#define __SVSFNT_H__ #define SVSFNT_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_TRUETYPE_TABLES_H #include FT_TRUETYPE_TABLES_H
@ -97,7 +97,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVSFNT_H__ */ #endif /* SVSFNT_H_ */
/* END */ /* END */

View File

@ -19,8 +19,8 @@
/* Development of this service is support of /* Development of this service is support of
Information-technology Promotion Agency, Japan. */ Information-technology Promotion Agency, Japan. */
#ifndef __SVTTCMAP_H__ #ifndef SVTTCMAP_H_
#define __SVTTCMAP_H__ #define SVTTCMAP_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_TRUETYPE_TABLES_H #include FT_TRUETYPE_TABLES_H
@ -100,7 +100,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVTTCMAP_H__ */ #endif /* SVTTCMAP_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVTTENG_H__ #ifndef SVTTENG_H_
#define __SVTTENG_H__ #define SVTTENG_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_MODULE_H #include FT_MODULE_H
@ -47,7 +47,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVTTENG_H__ */ #endif /* SVTTENG_H_ */
/* END */ /* END */

View File

@ -15,8 +15,8 @@
/* */ /* */
/***************************************************************************/ /***************************************************************************/
#ifndef __SVTTGLYF_H__ #ifndef SVTTGLYF_H_
#define __SVTTGLYF_H__ #define SVTTGLYF_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_TRUETYPE_TABLES_H #include FT_TRUETYPE_TABLES_H
@ -63,7 +63,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVTTGLYF_H__ */ #endif /* SVTTGLYF_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SVWINFNT_H__ #ifndef SVWINFNT_H_
#define __SVWINFNT_H__ #define SVWINFNT_H_
#include FT_INTERNAL_SERVICE_H #include FT_INTERNAL_SERVICE_H
#include FT_WINFONTS_H #include FT_WINFONTS_H
@ -44,7 +44,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SVWINFNT_H__ */ #endif /* SVWINFNT_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __SFNT_H__ #ifndef SFNT_H_
#define __SFNT_H__ #define SFNT_H_
#include <ft2build.h> #include <ft2build.h>
@ -742,7 +742,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __SFNT_H__ */ #endif /* SFNT_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __T1TYPES_H__ #ifndef T1TYPES_H_
#define __T1TYPES_H__ #define T1TYPES_H_
#include <ft2build.h> #include <ft2build.h>
@ -251,7 +251,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __T1TYPES_H__ */ #endif /* T1TYPES_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __TTTYPES_H__ #ifndef TTTYPES_H_
#define __TTTYPES_H__ #define TTTYPES_H_
#include <ft2build.h> #include <ft2build.h>
@ -1523,7 +1523,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __TTTYPES_H__ */ #endif /* TTTYPES_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __T1TABLES_H__ #ifndef T1TABLES_H_
#define __T1TABLES_H__ #define T1TABLES_H_
#include <ft2build.h> #include <ft2build.h>
@ -755,7 +755,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __T1TABLES_H__ */ #endif /* T1TABLES_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __TTNAMEID_H__ #ifndef TTNAMEID_H_
#define __TTNAMEID_H__ #define TTNAMEID_H_
#include <ft2build.h> #include <ft2build.h>
@ -1231,7 +1231,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __TTNAMEID_H__ */ #endif /* TTNAMEID_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __TTTABLES_H__ #ifndef TTTABLES_H_
#define __TTTABLES_H__ #define TTTABLES_H_
#include <ft2build.h> #include <ft2build.h>
@ -823,7 +823,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __TTTABLES_H__ */ #endif /* TTTABLES_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __TTAGS_H__ #ifndef TTAGS_H_
#define __TTAGS_H__ #define TTAGS_H_
#include <ft2build.h> #include <ft2build.h>
@ -105,7 +105,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __TTAGS_H__ */ #endif /* TTAGS_H_ */
/* END */ /* END */

View File

@ -18,8 +18,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __TTUNPAT_H__ #ifndef TTUNPAT_H_
#define __TTUNPAT_H__ #define TTUNPAT_H_
#include <ft2build.h> #include <ft2build.h>
@ -54,7 +54,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __TTUNPAT_H__ */ #endif /* TTUNPAT_H_ */
/* END */ /* END */

View File

@ -31,12 +31,12 @@
/*************************************************************************/ /*************************************************************************/
#ifndef __FT2BUILD_H__ #ifndef FT2BUILD_H_
#define __FT2BUILD_H__ #define FT2BUILD_H_
#include <freetype/config/ftheader.h> #include <freetype/config/ftheader.h>
#endif /* __FT2BUILD_H__ */ #endif /* FT2BUILD_H_ */
/* END */ /* END */

View File

@ -19,8 +19,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFBLUE_H__ #ifndef AFBLUE_H_
#define __AFBLUE_H__ #define AFBLUE_H_
FT_BEGIN_HEADER FT_BEGIN_HEADER
@ -249,7 +249,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFBLUE_H__ */ #endif /* AFBLUE_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFBLUE_H__ #ifndef AFBLUE_H_
#define __AFBLUE_H__ #define AFBLUE_H_
FT_BEGIN_HEADER FT_BEGIN_HEADER
@ -140,7 +140,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFBLUE_H__ */ #endif /* AFBLUE_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFCJK_H__ #ifndef AFCJK_H_
#define __AFCJK_H__ #define AFCJK_H_
#include "afhints.h" #include "afhints.h"
#include "aflatin.h" #include "aflatin.h"
@ -135,7 +135,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFCJK_H__ */ #endif /* AFCJK_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFDUMMY_H__ #ifndef AFDUMMY_H_
#define __AFDUMMY_H__ #define AFDUMMY_H_
#include "aftypes.h" #include "aftypes.h"
@ -34,7 +34,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFDUMMY_H__ */ #endif /* AFDUMMY_H_ */
/* END */ /* END */

View File

@ -23,12 +23,12 @@
/* */ /* */
/*************************************************************************/ /*************************************************************************/
#ifndef __AFERRORS_H__ #ifndef AFERRORS_H_
#define __AFERRORS_H__ #define AFERRORS_H_
#include FT_MODULE_ERRORS_H #include FT_MODULE_ERRORS_H
#undef __FTERRORS_H__ #undef FTERRORS_H_
#undef FT_ERR_PREFIX #undef FT_ERR_PREFIX
#define FT_ERR_PREFIX AF_Err_ #define FT_ERR_PREFIX AF_Err_
@ -36,6 +36,7 @@
#include FT_ERRORS_H #include FT_ERRORS_H
#endif /* __AFERRORS_H__ */ #endif /* AFERRORS_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFGLOBAL_H__ #ifndef AFGLOBAL_H_
#define __AFGLOBAL_H__ #define AFGLOBAL_H_
#include "aftypes.h" #include "aftypes.h"
@ -167,7 +167,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFGLOBAL_H__ */ #endif /* AFGLOBAL_H_ */
/* END */ /* END */

View File

@ -16,8 +16,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFHINTS_H__ #ifndef AFHINTS_H_
#define __AFHINTS_H__ #define AFHINTS_H_
#include "aftypes.h" #include "aftypes.h"
@ -473,7 +473,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFHINTS_H__ */ #endif /* AFHINTS_H_ */
/* END */ /* END */

View File

@ -17,8 +17,8 @@
/***************************************************************************/ /***************************************************************************/
#ifndef __AFINDIC_H__ #ifndef AFINDIC_H_
#define __AFINDIC_H__ #define AFINDIC_H_
#include "afhints.h" #include "afhints.h"
@ -35,7 +35,7 @@ FT_BEGIN_HEADER
FT_END_HEADER FT_END_HEADER
#endif /* __AFINDIC_H__ */ #endif /* AFINDIC_H_ */
/* END */ /* END */

Some files were not shown because too many files have changed in this diff Show More