internal.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /***************************************************************************/
  2. /* */
  3. /* internal.h */
  4. /* */
  5. /* Internal header files (specification only). */
  6. /* */
  7. /* Copyright 1996-2004, 2013 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. /* This file is automatically included by `ft2build.h'. */
  20. /* Do not include it manually! */
  21. /* */
  22. /*************************************************************************/
  23. #define FT_INTERNAL_OBJECTS_H <internal/ftobjs.h>
  24. #define FT_INTERNAL_PIC_H <internal/ftpic.h>
  25. #define FT_INTERNAL_STREAM_H <internal/ftstream.h>
  26. #define FT_INTERNAL_MEMORY_H <internal/ftmemory.h>
  27. #define FT_INTERNAL_DEBUG_H <internal/ftdebug.h>
  28. #define FT_INTERNAL_CALC_H <internal/ftcalc.h>
  29. #define FT_INTERNAL_DRIVER_H <internal/ftdriver.h>
  30. #define FT_INTERNAL_TRACE_H <internal/fttrace.h>
  31. #define FT_INTERNAL_GLYPH_LOADER_H <internal/ftgloadr.h>
  32. #define FT_INTERNAL_SFNT_H <internal/sfnt.h>
  33. #define FT_INTERNAL_SERVICE_H <internal/ftserv.h>
  34. #define FT_INTERNAL_RFORK_H <internal/ftrfork.h>
  35. #define FT_INTERNAL_VALIDATE_H <internal/ftvalid.h>
  36. #define FT_INTERNAL_TRUETYPE_TYPES_H <internal/tttypes.h>
  37. #define FT_INTERNAL_TYPE1_TYPES_H <internal/t1types.h>
  38. #define FT_INTERNAL_POSTSCRIPT_AUX_H <internal/psaux.h>
  39. #define FT_INTERNAL_POSTSCRIPT_HINTS_H <internal/pshints.h>
  40. #define FT_INTERNAL_POSTSCRIPT_GLOBALS_H <internal/psglobal.h>
  41. #define FT_INTERNAL_AUTOHINT_H <internal/autohint.h>
  42. #if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */
  43. /* We disable the warning `conditional expression is constant' here */
  44. /* in order to compile cleanly with the maximum level of warnings. */
  45. /* In particular, the warning complains about stuff like `while(0)' */
  46. /* which is very useful in macro definitions. There is no benefit */
  47. /* in having it enabled. */
  48. #pragma warning( disable : 4127 )
  49. #endif /* _MSC_VER */
  50. /* END */