/src/freetype/src/sfnt/sfobjs.h

https://bitbucket.org/cabalistic/ogredeps/ · C++ Header · 54 lines · 22 code · 15 blank · 17 comment · 0 complexity · afeed0c5f7024e012e5c0e5df0172d27 MD5 · raw file

  1. /***************************************************************************/
  2. /* */
  3. /* sfobjs.h */
  4. /* */
  5. /* SFNT object management (specification). */
  6. /* */
  7. /* Copyright 1996-2001, 2002 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 __SFOBJS_H__
  18. #define __SFOBJS_H__
  19. #include <ft2build.h>
  20. #include FT_INTERNAL_SFNT_H
  21. #include FT_INTERNAL_OBJECTS_H
  22. FT_BEGIN_HEADER
  23. FT_LOCAL( FT_Error )
  24. sfnt_init_face( FT_Stream stream,
  25. TT_Face face,
  26. FT_Int face_index,
  27. FT_Int num_params,
  28. FT_Parameter* params );
  29. FT_LOCAL( FT_Error )
  30. sfnt_load_face( FT_Stream stream,
  31. TT_Face face,
  32. FT_Int face_index,
  33. FT_Int num_params,
  34. FT_Parameter* params );
  35. FT_LOCAL( void )
  36. sfnt_done_face( TT_Face face );
  37. FT_END_HEADER
  38. #endif /* __SFDRIVER_H__ */
  39. /* END */