shithub: freetype+ttf2subf

Download patch

ref: f7b5c822b2fc562edb49d33f7588e4743a521fbb
parent: 488cd71e4ba08cd5b1d6076401323e9bb6ee25fd
author: David Turner <[email protected]>
date: Tue May 2 06:55:33 EDT 2000

defined FT_Pointer as a typeless pointer
added the declaration of FT_Default_Drivers
(implemented in ftinit.c)

git/fs: mount .git/fs: mount/attach disallowed
--- 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                                                      */
   /*                                                                       */
@@ -2514,6 +2524,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
   }