pfrgload.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /***************************************************************************/
  2. /* */
  3. /* pfrgload.h */
  4. /* */
  5. /* FreeType PFR glyph loader (specification). */
  6. /* */
  7. /* Copyright 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 __PFRGLOAD_H__
  18. #define __PFRGLOAD_H__
  19. #include "pfrtypes.h"
  20. FT_BEGIN_HEADER
  21. FT_LOCAL( void )
  22. pfr_glyph_init( PFR_Glyph glyph,
  23. FT_GlyphLoader loader );
  24. FT_LOCAL( void )
  25. pfr_glyph_done( PFR_Glyph glyph );
  26. FT_LOCAL( FT_Error )
  27. pfr_glyph_load( PFR_Glyph glyph,
  28. FT_Stream stream,
  29. FT_ULong gps_offset,
  30. FT_ULong offset,
  31. FT_ULong size );
  32. FT_END_HEADER
  33. #endif /* __PFRGLOAD_H__ */
  34. /* END */