/src/compiler/android-ndk/jni/freetype/src/cff/cffload.h

http://ftk.googlecode.com/ · C++ Header · 81 lines · 39 code · 25 blank · 17 comment · 0 complexity · b04b9f91eac13f6fdc77b1aa085ebbbe MD5 · raw file

  1. /***************************************************************************/
  2. /* */
  3. /* cffload.h */
  4. /* */
  5. /* OpenType & CFF data/program tables loader (specification). */
  6. /* */
  7. /* Copyright 1996-2001, 2002, 2003, 2007, 2008 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 __CFFLOAD_H__
  18. #define __CFFLOAD_H__
  19. #include <ft2build.h>
  20. #include "cfftypes.h"
  21. #include FT_SERVICE_POSTSCRIPT_CMAPS_H
  22. FT_BEGIN_HEADER
  23. FT_LOCAL( FT_UShort )
  24. cff_get_standard_encoding( FT_UInt charcode );
  25. FT_LOCAL( FT_String* )
  26. cff_index_get_name( CFF_Index idx,
  27. FT_UInt element );
  28. FT_LOCAL( FT_String* )
  29. cff_index_get_sid_string( CFF_Index idx,
  30. FT_UInt sid,
  31. FT_Service_PsCMaps psnames );
  32. FT_LOCAL( FT_Error )
  33. cff_index_access_element( CFF_Index idx,
  34. FT_UInt element,
  35. FT_Byte** pbytes,
  36. FT_ULong* pbyte_len );
  37. FT_LOCAL( void )
  38. cff_index_forget_element( CFF_Index idx,
  39. FT_Byte** pbytes );
  40. FT_LOCAL( FT_UInt )
  41. cff_charset_cid_to_gindex( CFF_Charset charset,
  42. FT_UInt cid );
  43. FT_LOCAL( FT_Error )
  44. cff_font_load( FT_Library library,
  45. FT_Stream stream,
  46. FT_Int face_index,
  47. CFF_Font font,
  48. FT_Bool pure_cff );
  49. FT_LOCAL( void )
  50. cff_font_done( CFF_Font font );
  51. FT_LOCAL( FT_Byte )
  52. cff_fd_select_get( CFF_FDSelect fdselect,
  53. FT_UInt glyph_index );
  54. FT_END_HEADER
  55. #endif /* __CFFLOAD_H__ */
  56. /* END */