forked from minhngoc25a/freetype2
[tfm] Improve `tfm_interface' definitions.
This commit is contained in:
parent
ca9e387ccb
commit
82571dc2c7
|
@ -21,14 +21,20 @@
|
|||
#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…
Reference in New Issue