summaryrefslogtreecommitdiffstats
path: root/libass/ass_font.h
diff options
context:
space:
mode:
Diffstat (limited to 'libass/ass_font.h')
-rw-r--r--libass/ass_font.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libass/ass_font.h b/libass/ass_font.h
index 06519c6..fb6462b 100644
--- a/libass/ass_font.h
+++ b/libass/ass_font.h
@@ -26,7 +26,7 @@
typedef struct ass_font ASS_Font;
typedef struct ass_font_desc ASS_FontDesc;
-typedef struct ass_buffer ASS_Buffer;
+typedef struct ass_font_stream ASS_FontStream;
#include "ass.h"
#include "ass_types.h"
@@ -59,9 +59,9 @@ struct ass_font {
double size;
};
-struct ass_buffer {
- void *buf;
- size_t len;
+struct ass_font_stream {
+ GetDataFunc func;
+ void *priv;
};
void charmap_magic(ASS_Library *library, FT_Face face);