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

https://bitbucket.org/cabalistic/ogredeps/ · C++ Header · 50 lines · 11 code · 14 blank · 25 comment · 0 complexity · af1196ff9438b85af812f690823884bb MD5 · raw file

  1. /***************************************************************************/
  2. /* */
  3. /* gxvmod.h */
  4. /* */
  5. /* FreeType's TrueTypeGX/AAT validation module implementation */
  6. /* (specification). */
  7. /* */
  8. /* Copyright 2004, 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */
  9. /* David Turner, Robert Wilhelm, and Werner Lemberg. */
  10. /* */
  11. /* This file is part of the FreeType project, and may only be used, */
  12. /* modified, and distributed under the terms of the FreeType project */
  13. /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
  14. /* this file you indicate that you have read the license and */
  15. /* understand and accept it fully. */
  16. /* */
  17. /***************************************************************************/
  18. /***************************************************************************/
  19. /* */
  20. /* gxvalid is derived from both gxlayout module and otvalid module. */
  21. /* Development of gxlayout is supported by the Information-technology */
  22. /* Promotion Agency(IPA), Japan. */
  23. /* */
  24. /***************************************************************************/
  25. #ifndef __GXVMOD_H__
  26. #define __GXVMOD_H__
  27. #include <ft2build.h>
  28. #include FT_MODULE_H
  29. FT_BEGIN_HEADER
  30. #ifdef FT_CONFIG_OPTION_PIC
  31. #error "this module does not support PIC yet"
  32. #endif
  33. FT_EXPORT_VAR( const FT_Module_Class ) gxv_module_class;
  34. FT_END_HEADER
  35. #endif /* __GXVMOD_H__ */
  36. /* END */