tttags.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /***************************************************************************/
  2. /* */
  3. /* tttags.h */
  4. /* */
  5. /* Tags for TrueType tables (specification only). */
  6. /* */
  7. /* Copyright 1996-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. #ifndef __TTAGS_H__
  18. #define __TTAGS_H__
  19. #include <ft2build.h>
  20. #include FT_FREETYPE_H
  21. FT_BEGIN_HEADER
  22. #define TTAG_cmap FT_MAKE_TAG( 'c', 'm', 'a', 'p' )
  23. #define TTAG_cvt FT_MAKE_TAG( 'c', 'v', 't', ' ' )
  24. #define TTAG_CFF FT_MAKE_TAG( 'C', 'F', 'F', ' ' )
  25. #define TTAG_DSIG FT_MAKE_TAG( 'D', 'S', 'I', 'G' )
  26. #define TTAG_bhed FT_MAKE_TAG( 'b', 'h', 'e', 'd' )
  27. #define TTAG_bdat FT_MAKE_TAG( 'b', 'd', 'a', 't' )
  28. #define TTAG_bloc FT_MAKE_TAG( 'b', 'l', 'o', 'c' )
  29. #define TTAG_EBDT FT_MAKE_TAG( 'E', 'B', 'D', 'T' )
  30. #define TTAG_EBLC FT_MAKE_TAG( 'E', 'B', 'L', 'C' )
  31. #define TTAG_EBSC FT_MAKE_TAG( 'E', 'B', 'S', 'C' )
  32. #define TTAG_fpgm FT_MAKE_TAG( 'f', 'p', 'g', 'm' )
  33. #define TTAG_fvar FT_MAKE_TAG( 'f', 'v', 'a', 'r' )
  34. #define TTAG_gasp FT_MAKE_TAG( 'g', 'a', 's', 'p' )
  35. #define TTAG_glyf FT_MAKE_TAG( 'g', 'l', 'y', 'f' )
  36. #define TTAG_GSUB FT_MAKE_TAG( 'G', 'S', 'U', 'B' )
  37. #define TTAG_hdmx FT_MAKE_TAG( 'h', 'd', 'm', 'x' )
  38. #define TTAG_head FT_MAKE_TAG( 'h', 'e', 'a', 'd' )
  39. #define TTAG_hhea FT_MAKE_TAG( 'h', 'h', 'e', 'a' )
  40. #define TTAG_hmtx FT_MAKE_TAG( 'h', 'm', 't', 'x' )
  41. #define TTAG_kern FT_MAKE_TAG( 'k', 'e', 'r', 'n' )
  42. #define TTAG_loca FT_MAKE_TAG( 'l', 'o', 'c', 'a' )
  43. #define TTAG_LTSH FT_MAKE_TAG( 'L', 'T', 'S', 'H' )
  44. #define TTAG_maxp FT_MAKE_TAG( 'm', 'a', 'x', 'p' )
  45. #define TTAG_MMSD FT_MAKE_TAG( 'M', 'M', 'S', 'D' )
  46. #define TTAG_MMFX FT_MAKE_TAG( 'M', 'M', 'F', 'X' )
  47. #define TTAG_name FT_MAKE_TAG( 'n', 'a', 'm', 'e' )
  48. #define TTAG_OS2 FT_MAKE_TAG( 'O', 'S', '/', '2' )
  49. #define TTAG_OTTO FT_MAKE_TAG( 'O', 'T', 'T', 'O' )
  50. #define TTAG_PCLT FT_MAKE_TAG( 'P', 'C', 'L', 'T' )
  51. #define TTAG_post FT_MAKE_TAG( 'p', 'o', 's', 't' )
  52. #define TTAG_prep FT_MAKE_TAG( 'p', 'r', 'e', 'p' )
  53. #define TTAG_true FT_MAKE_TAG( 't', 'r', 'u', 'e' )
  54. #define TTAG_ttc FT_MAKE_TAG( 't', 't', 'c', ' ' )
  55. #define TTAG_ttcf FT_MAKE_TAG( 't', 't', 'c', 'f' )
  56. #define TTAG_VDMX FT_MAKE_TAG( 'V', 'D', 'M', 'X' )
  57. #define TTAG_vhea FT_MAKE_TAG( 'v', 'h', 'e', 'a' )
  58. #define TTAG_vmtx FT_MAKE_TAG( 'v', 'm', 't', 'x' )
  59. FT_END_HEADER
  60. #endif /* __TTAGS_H__ */
  61. /* END */