Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

FT_New_Face_From_FSSpec ( FT_Library  library,
const FSSpec *  spec,
FT_Long  face_index,
FT_Face aface 
)

Definition at line 1032 of file ftmac.c.

01036   {
01037 #if ( __LP64__ ) || ( defined( MAC_OS_X_VERSION_10_5 ) && \
01038       ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 ) )
01039     FT_UNUSED( library );
01040     FT_UNUSED( spec );
01041     FT_UNUSED( face_index );
01042     FT_UNUSED( aface );
01043 
01044     return FT_Err_Unimplemented_Feature;
01045 #else
01046     FSRef  ref;
01047 
01048 
01049     if ( !spec || FSpMakeFSRef( spec, &ref ) != noErr )
01050       return FT_Err_Invalid_Argument;
01051     else
01052       return FT_New_Face_From_FSRef( library, &ref, face_index, aface );
01053 #endif
01054   }


Generated on Thu Feb 9 06:09:58 2012 for ReactOS by doxygen 1.6.3

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.