Commit 07c8774ca26254c76c5e2d012ebadcc20e2003f5

Leonard Rosenthol 2001-12-06T17:52:40

Exported new routine for getting a path from a name

diff --git a/include/freetype/ftmac.h b/include/freetype/ftmac.h
index 6a1b4c8..7743448 100644
--- a/include/freetype/ftmac.h
+++ b/include/freetype/ftmac.h
@@ -92,6 +92,31 @@ FT_BEGIN_HEADER
                          FT_Face    *aface );
 
 
+  /*************************************************************************/
+  /*                                                                       */
+  /* <Function>                                                            */
+  /*    FT_GetFile_From_Mac_Name				           */
+  /*                                                                       */
+  /* <Description>                                                         */
+  /*    Returns an FSSpec for the disk file containing the named font.     */
+  /*                                                                       */
+  /* <Input>                                                               */
+  /*    fontName   :: Mac OS name of the font (eg. Times New Roman Bold)   */
+  /*                                                                       */
+  /* <Output>                                                              */
+  /*    pathSpec   :: FSSpec to the file.  For passing to FT_New_Face      */
+  /*                                                                       */
+  /*    face_index :: index of the face  For passing to FT_New_Face        */
+  /*                                                                       */
+  /* <Return>                                                              */
+  /*    FreeType error code.  0 means success.                             */
+  /*                                                                       */
+  /*                                                                       */
+  FT_EXPORT_DEF( FT_Error )
+	FT_GetFile_From_Mac_Name( char* fontName, 
+				  FSSpec* pathSpec,
+				  FT_Long* face_index );
+	
   /* */