1
0

svtteng.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /***************************************************************************/
  2. /* */
  3. /* svtteng.h */
  4. /* */
  5. /* The FreeType TrueType engine query service (specification). */
  6. /* */
  7. /* Copyright 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. #ifndef __SVTTENG_H__
  18. #define __SVTTENG_H__
  19. #include FT_INTERNAL_SERVICE_H
  20. #include FT_MODULE_H
  21. FT_BEGIN_HEADER
  22. /*
  23. * SFNT table loading service.
  24. */
  25. #define FT_SERVICE_ID_TRUETYPE_ENGINE "truetype-engine"
  26. /*
  27. * Used to implement FT_Get_TrueType_Engine_Type
  28. */
  29. FT_DEFINE_SERVICE( TrueTypeEngine )
  30. {
  31. FT_TrueTypeEngineType engine_type;
  32. };
  33. /* */
  34. FT_END_HEADER
  35. #endif /* __SVTTENG_H__ */
  36. /* END */