defined FT_Pointer as a typeless pointer added the declaration of FT_Default_Drivers (implemented in ftinit.c)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/include/freetype.h b/include/freetype.h
index 7b3dac4..d89d77c 100644
--- a/include/freetype.h
+++ b/include/freetype.h
@@ -244,6 +244,16 @@
/*************************************************************************/
/* */
+ /* <Type> */
+ /* FT_Pointer */
+ /* */
+ /* <Description> */
+ /* A simple typedef for a typeless pointer. */
+ /* */
+ typedef void* FT_Pointer;
+
+ /*************************************************************************/
+ /* */
/* <Struct> */
/* FT_UnitVector */
/* */
@@ -2515,6 +2525,20 @@
EXPORT_DEF
FT_Error FT_Matrix_Invert( FT_Matrix* matrix );
+ /*************************************************************************/
+ /* */
+ /* <Function> */
+ /* FT_Default_Drivers */
+ /* */
+ /* <Description> */
+ /* Adds the set of default drivers to a given library object. */
+ /* */
+ /* <InOut> */
+ /* library :: A handle to a new library object. */
+ /* */
+ EXPORT_DEF
+ void FT_Default_Drivers( FT_Library library );
+
#ifdef __cplusplus
}
#endif