/src/freetype/src/gxvalid/gxvalid.h

https://bitbucket.org/cabalistic/ogredeps/ · C++ Header · 107 lines · 55 code · 28 blank · 24 comment · 0 complexity · 8687360cdd8e076d7a76bbf8172d94a1 MD5 · raw file

  1. /***************************************************************************/
  2. /* */
  3. /* gxvalid.h */
  4. /* */
  5. /* TrueTyeeGX/AAT table validation (specification only). */
  6. /* */
  7. /* Copyright 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */
  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. /* gxvalid is derived from both gxlayout module and otvalid module. */
  20. /* Development of gxlayout is supported by the Information-technology */
  21. /* Promotion Agency(IPA), Japan. */
  22. /* */
  23. /***************************************************************************/
  24. #ifndef __GXVALID_H__
  25. #define __GXVALID_H__
  26. #include <ft2build.h>
  27. #include FT_FREETYPE_H
  28. #include "gxverror.h" /* must come before FT_INTERNAL_VALIDATE_H */
  29. #include FT_INTERNAL_VALIDATE_H
  30. #include FT_INTERNAL_STREAM_H
  31. FT_BEGIN_HEADER
  32. FT_LOCAL( void )
  33. gxv_feat_validate( FT_Bytes table,
  34. FT_Face face,
  35. FT_Validator valid );
  36. FT_LOCAL( void )
  37. gxv_bsln_validate( FT_Bytes table,
  38. FT_Face face,
  39. FT_Validator valid );
  40. FT_LOCAL( void )
  41. gxv_trak_validate( FT_Bytes table,
  42. FT_Face face,
  43. FT_Validator valid );
  44. FT_LOCAL( void )
  45. gxv_just_validate( FT_Bytes table,
  46. FT_Face face,
  47. FT_Validator valid );
  48. FT_LOCAL( void )
  49. gxv_mort_validate( FT_Bytes table,
  50. FT_Face face,
  51. FT_Validator valid );
  52. FT_LOCAL( void )
  53. gxv_morx_validate( FT_Bytes table,
  54. FT_Face face,
  55. FT_Validator valid );
  56. FT_LOCAL( void )
  57. gxv_kern_validate( FT_Bytes table,
  58. FT_Face face,
  59. FT_Validator valid );
  60. FT_LOCAL( void )
  61. gxv_kern_validate_classic( FT_Bytes table,
  62. FT_Face face,
  63. FT_Int dialect_flags,
  64. FT_Validator valid );
  65. FT_LOCAL( void )
  66. gxv_opbd_validate( FT_Bytes table,
  67. FT_Face face,
  68. FT_Validator valid );
  69. FT_LOCAL( void )
  70. gxv_prop_validate( FT_Bytes table,
  71. FT_Face face,
  72. FT_Validator valid );
  73. FT_LOCAL( void )
  74. gxv_lcar_validate( FT_Bytes table,
  75. FT_Face face,
  76. FT_Validator valid );
  77. FT_END_HEADER
  78. #endif /* __GXVALID_H__ */
  79. /* END */