Exported new routine for getting a path from a name

This commit is contained in:
Leonard Rosenthol 2001-12-06 17:52:40 +00:00
parent 7532426c0b
commit 33e59a9cb4
1 changed files with 25 additions and 0 deletions

View File

@ -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 );
/* */