/**************************************************************************** * * pfrcmap.c * * FreeType PFR cmap handling (body). * * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType project * license, LICENSE.TXT. By continuing to use, modify, or distribute * this file you indicate that you have read the license and * understand and accept it fully. * */ #include <freetype/internal/ftdebug.h> #include "pfrcmap.h" #include "pfrobjs.h" #include "pfrerror.h" FT_CALLBACK_DEF( FT_Error ) pfr_cmap_init( FT_CMap cmap, /* PFR_CMap */ FT_Pointer pointer ) { … } FT_CALLBACK_DEF( void ) pfr_cmap_done( FT_CMap cmap ) /* PFR_CMap */ { … } FT_CALLBACK_DEF( FT_UInt ) pfr_cmap_char_index( FT_CMap cmap, /* PFR_CMap */ FT_UInt32 char_code ) { … } FT_CALLBACK_DEF( FT_UInt ) pfr_cmap_char_next( FT_CMap cmap, /* PFR_CMap */ FT_UInt32 *pchar_code ) { … } FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec pfr_cmap_class_rec = …; /* END */