summaryrefslogtreecommitdiff
path: root/src/encoding.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding.h')
-rw-r--r--src/encoding.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/encoding.h b/src/encoding.h
index 49b4e29..3f7ccf0 100644
--- a/src/encoding.h
+++ b/src/encoding.h
@@ -1,6 +1,7 @@
#ifndef _TTF2F_ENCODING_H_
#define _TTF2F_ENCODING_H_
+#include "context.h"
#include "utils.h"
typedef enum encoding_type {
@@ -11,7 +12,7 @@ typedef enum encoding_type {
struct glyph;
ttf2f_result encoding_write(const char *savein, const char *name,
- struct glyph *glyph_list, int list_size, encoding_type type,
+ ttf2f_ctx *ctx, encoding_type type,
void (*callback)(int progress));
#endif