#include "t1cmap.h"
#include "psauxerr.h"
Go to the source code of this file.
t1_cmap_custom_char_index | ( | T1_CMapCustom | cmap, | |
FT_UInt32 | char_code | |||
) |
t1_cmap_custom_char_next | ( | T1_CMapCustom | cmap, | |
FT_UInt32 * | pchar_code | |||
) |
t1_cmap_custom_done | ( | T1_CMapCustom | cmap | ) |
t1_cmap_custom_init | ( | T1_CMapCustom | cmap | ) |
t1_cmap_expert_init | ( | T1_CMapStd | cmap | ) |
t1_cmap_standard_init | ( | T1_CMapStd | cmap | ) |
t1_cmap_std_char_index | ( | T1_CMapStd | cmap, | |
FT_UInt32 | char_code | |||
) |
t1_cmap_std_char_next | ( | T1_CMapStd | cmap, | |
FT_UInt32 * | pchar_code | |||
) |
t1_cmap_std_done | ( | T1_CMapStd | cmap | ) |
static void t1_cmap_std_init | ( | T1_CMapStd | cmap, | |
FT_Int | is_expert | |||
) | [static] |
Definition at line 35 of file t1cmap.c.
References FT_ASSERT, FT_CMAP_FACE, and NULL.
Referenced by t1_cmap_expert_init(), and t1_cmap_standard_init().
t1_cmap_unicode_char_index | ( | PS_Unicodes | unicodes, | |
FT_UInt32 | char_code | |||
) |
t1_cmap_unicode_char_next | ( | PS_Unicodes | unicodes, | |
FT_UInt32 * | pchar_code | |||
) |
t1_cmap_unicode_done | ( | PS_Unicodes | unicodes | ) |
t1_cmap_unicode_init | ( | PS_Unicodes | unicodes | ) |
Definition at line 275 of file t1cmap.c.
References FT_CMAP_FACE, FT_FACE_MEMORY, NULL, and t1_get_glyph_name().
FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec t1_cmap_custom_class_rec |
Initial value:
{ sizeof ( T1_CMapCustomRec ), (FT_CMap_InitFunc) t1_cmap_custom_init, (FT_CMap_DoneFunc) t1_cmap_custom_done, (FT_CMap_CharIndexFunc)t1_cmap_custom_char_index, (FT_CMap_CharNextFunc) t1_cmap_custom_char_next, NULL, NULL, NULL, NULL, NULL }
FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec t1_cmap_expert_class_rec |
Initial value:
{ sizeof ( T1_CMapStdRec ), (FT_CMap_InitFunc) t1_cmap_expert_init, (FT_CMap_DoneFunc) t1_cmap_std_done, (FT_CMap_CharIndexFunc)t1_cmap_std_char_index, (FT_CMap_CharNextFunc) t1_cmap_std_char_next, NULL, NULL, NULL, NULL, NULL }
FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec t1_cmap_standard_class_rec |
Initial value:
{ sizeof ( T1_CMapStdRec ), (FT_CMap_InitFunc) t1_cmap_standard_init, (FT_CMap_DoneFunc) t1_cmap_std_done, (FT_CMap_CharIndexFunc)t1_cmap_std_char_index, (FT_CMap_CharNextFunc) t1_cmap_std_char_next, NULL, NULL, NULL, NULL, NULL }
FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec t1_cmap_unicode_class_rec |
Initial value:
{ sizeof ( PS_UnicodesRec ), (FT_CMap_InitFunc) t1_cmap_unicode_init, (FT_CMap_DoneFunc) t1_cmap_unicode_done, (FT_CMap_CharIndexFunc)t1_cmap_unicode_char_index, (FT_CMap_CharNextFunc) t1_cmap_unicode_char_next, NULL, NULL, NULL, NULL, NULL }