diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index a33089b..e0ee951 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -272,7 +272,8 @@ struct plugin_api { bool (*is_diacritic)(const unsigned short char_code, bool *is_rtl); #endif const unsigned char *(*font_get_bits)( struct font *pf, unsigned short char_code ); - int (*font_load)(struct font*, const char *path); + int (*font_load)(const char *path); + void (*font_unload)(int font_id); struct font* (*font_get)(int font); int (*font_getstringsize)(const unsigned char *str, int *w, int *h, int fontnumber); |