mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-15 03:28:20 +02:00
[tfm] Modify `tfm_interface' definition.
* src/tfm/tfmmod.c: Add `TFM_Parser_FuncsRec' implementation in `tfm_interface'.
This commit is contained in:
parent
8d32347f78
commit
903a066214
1 changed files with 7 additions and 2 deletions
|
|
@ -21,14 +21,19 @@
|
|||
#include "tfmobjs.h"
|
||||
|
||||
|
||||
static
|
||||
const TFM_Interface tfm_interface =
|
||||
FT_CALLBACK_TABLE_DEF
|
||||
const TFM_Parser_FuncsRec tfm_parser_funcs =
|
||||
{
|
||||
tfm_init, /* init */
|
||||
tfm_parse_metrics, /* parse metrics */
|
||||
tfm_close, /* done */
|
||||
};
|
||||
|
||||
static
|
||||
const TFM_Interface tfm_interface =
|
||||
{
|
||||
&tfm_parser_funcs,
|
||||
};
|
||||
|
||||
FT_CALLBACK_TABLE_DEF
|
||||
const FT_Module_Class tfm_module_class =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue