pfrcmap.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /***************************************************************************/
  2. /* */
  3. /* pfrcmap.h */
  4. /* */
  5. /* FreeType PFR cmap handling (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 __PFRCMAP_H__
  18. #define __PFRCMAP_H__
  19. #include <ft2build.h>
  20. #include FT_INTERNAL_OBJECTS_H
  21. #include "pfrtypes.h"
  22. FT_BEGIN_HEADER
  23. typedef struct PFR_CMapRec_
  24. {
  25. FT_CMapRec cmap;
  26. FT_UInt num_chars;
  27. PFR_Char chars;
  28. } PFR_CMapRec, *PFR_CMap;
  29. FT_CALLBACK_TABLE const FT_CMap_ClassRec pfr_cmap_class_rec;
  30. FT_END_HEADER
  31. #endif /* __PFRCMAP_H__ */
  32. /* END */