Exported new routine for getting a path from a name

david-pic-changes
Leonard Rosenthol 23 years ago
parent 7013373eb7
commit 07c8774ca2
  1. 25
      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 );
/* */

Loading…
Cancel
Save