/modules/freetype2/src/sfnt/sfnt.c

http://github.com/zpao/v8monkey · C · 42 lines · 18 code · 7 blank · 17 comment · 0 complexity · 3a018b214d53d2490449ef0aa9cc2f60 MD5 · raw file

  1. /***************************************************************************/
  2. /* */
  3. /* sfnt.c */
  4. /* */
  5. /* Single object library component. */
  6. /* */
  7. /* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006 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. #define FT_MAKE_OPTION_SINGLE_OBJECT
  18. #include <ft2build.h>
  19. #include "sfntpic.c"
  20. #include "ttload.c"
  21. #include "ttmtx.c"
  22. #include "ttcmap.c"
  23. #include "ttkern.c"
  24. #include "sfobjs.c"
  25. #include "sfdriver.c"
  26. #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
  27. #include "ttsbit.c"
  28. #endif
  29. #ifdef TT_CONFIG_OPTION_POSTSCRIPT_NAMES
  30. #include "ttpost.c"
  31. #endif
  32. #ifdef TT_CONFIG_OPTION_BDF
  33. #include "ttbdf.c"
  34. #endif
  35. /* END */