#define _OTF_H_
/* Version name of this library. */
-#define LIBOTF_VERSION "0.9.4"
+#define LIBOTF_VERSION "0.9.5"
/* Major version number. */
#define LIBOTF_MAJOR_VERSION 0
/* Minor version number. */
#define LIBOTF_MINOR_VERSION 9
/* Release (i.e. patch level) number. */
-#define LIBOTF_RELEASE_NUMBER 4
+#define LIBOTF_RELEASE_NUMBER 5
/***
Table of contents:
(1-11) Structure for OTF
(2) API for reading OTF
- (2-1) OTF_open()
+ (2-1) OTF_open(), OTF_open_ft_face()
(2-2) OTF_close()
(2-3) OTF_get_table()
(2-4) OTF_check_table()
extern OTF *OTF_open (char *name);
+#include <ft2build.h>
+#include FT_FREETYPE_H
+
+extern OTF *OTF_open_ft_face (FT_Face face);
+
/*** (2-2) OTF_close () */