shithub: freetype+ttf2subf

Download patch

ref: 60402683ba9b64de99c5c31d029eb3b564404d97
parent: deb4e9839608a996ff7bb54fcddba93ff1ec0544
author: David Turner <[email protected]>
date: Thu Jun 29 02:19:07 EDT 2000

small fix in the definition of the convenience functions

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/base/ftoutln.c
+++ b/src/base/ftoutln.c
@@ -809,8 +809,8 @@
   /* <Return>                                                              */
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
-  BASE_FUNC( FT_Error )  FT_Outline_Copy( FT_Outline*  source,
-                                          FT_Outline*  target )
+  FT_EXPORT_FUNC( FT_Error )  FT_Outline_Copy( FT_Outline*  source,
+                                               FT_Outline*  target )
   {
     FT_Int  is_owner;
 
@@ -857,8 +857,8 @@
   /* <MT-Note>                                                             */
   /*    Yes.                                                               */
   /*                                                                       */
-  BASE_FUNC( void )  FT_Matrix_Multiply( FT_Matrix*  a,
-                                         FT_Matrix*  b )
+  FT_EXPORT_FUNC( void )  FT_Matrix_Multiply( FT_Matrix*  a,
+                                              FT_Matrix*  b )
   {
     FT_Fixed  xx, xy, yx, yy;
 
@@ -891,7 +891,7 @@
   /* <MT-Note>                                                             */
   /*    Yes.                                                               */
   /*                                                                       */
-  BASE_FUNC( FT_Error )  FT_Matrix_Invert( FT_Matrix*  matrix )
+  FT_EXPORT_FUNC( FT_Error )  FT_Matrix_Invert( FT_Matrix*  matrix )
   {
     FT_Pos  delta, xx, yy;