t1gload.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /***************************************************************************/
  2. /* */
  3. /* t1gload.h */
  4. /* */
  5. /* Type 1 Glyph Loader (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 __T1GLOAD_H__
  18. #define __T1GLOAD_H__
  19. #include <ft2build.h>
  20. #include "t1objs.h"
  21. FT_BEGIN_HEADER
  22. FT_LOCAL( FT_Error )
  23. T1_Compute_Max_Advance( T1_Face face,
  24. FT_Int* max_advance );
  25. FT_LOCAL( FT_Error )
  26. T1_Load_Glyph( T1_GlyphSlot glyph,
  27. T1_Size size,
  28. FT_UInt glyph_index,
  29. FT_Int32 load_flags );
  30. FT_END_HEADER
  31. #endif /* __T1GLOAD_H__ */
  32. /* END */