diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/cmapdump.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/scripts/cmapdump.c b/scripts/cmapdump.c index 2f3c16df..12d6f2af 100644 --- a/scripts/cmapdump.c +++ b/scripts/cmapdump.c @@ -164,10 +164,15 @@ void fz_new_font_context(fz_context *ctx) { } -void fz_free_font_context(fz_context *ctx) +void fz_drop_font_context(fz_context *ctx) { } +fz_font_context *fz_keep_font_context(fz_context *ctx) +{ + return NULL; +} + void fz_new_aa_context(fz_context *ctx) { } @@ -189,7 +194,7 @@ void fz_new_store_context(fz_context *ctx, unsigned int max) { } -void fz_free_store_context(fz_context *ctx) +void fz_drop_store_context(fz_context *ctx) { } @@ -207,11 +212,11 @@ void fz_new_glyph_cache_context(fz_context *ctx) { } -void fz_free_glyph_cache_context(fz_context *ctx) +void fz_drop_glyph_cache_context(fz_context *ctx) { } -fz_glyph_cache *fz_glyph_cache_keep(fz_context *ctx) +fz_glyph_cache *fz_keep_glyph_cache(fz_context *ctx) { return NULL; } |