added swf_WriteFont and swf_ReadFont routines
authorkramm <kramm>
Sun, 4 Nov 2001 16:55:49 +0000 (16:55 +0000)
committerkramm <kramm>
Sun, 4 Nov 2001 16:55:49 +0000 (16:55 +0000)
lib/rfxswf.h

index 43d4b87..db5a79e 100644 (file)
@@ -16,6 +16,8 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <unistd.h>
+#include <fcntl.h>
 #include "../config.h"
 
 #define DEBUG_RFXSWF
@@ -356,6 +358,9 @@ int swf_FontSetInfo(TAG * t,SWFFONT * f);
 int swf_FontExport(int handle,SWFFONT * f);
 int swf_FontImport(int handle,SWFFONT * * f);
 
+void swf_WriteFont(SWFFONT* font, char* filename, int useDefineFont2);
+SWFFONT* swf_ReadFont(char* filename);
+
 void swf_FontFree(SWFFONT * f);
 
 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);