CTFontManager.m
1 #import <CoreText/CTFontManager.h> 2 3 bool CTFontManagerRegisterGraphicsFont(CGFontRef font, CFErrorRef* error) 4 { 5 printf("STUB %s\n", __PRETTY_FUNCTION__); 6 return nil; 7 } 8 9 bool CTFontManagerUnregisterGraphicsFont(CGFontRef font, CFErrorRef *error) 10 { 11 printf("STUB %s\n", __PRETTY_FUNCTION__); 12 return nil; 13 } 14 15 CFArrayRef CTFontManagerCopyAvailableFontFamilyNames(void) 16 { 17 printf("STUB %s\n", __PRETTY_FUNCTION__); 18 return nil; 19 } 20 21 bool CTFontManagerRegisterFontsForURL(CFURLRef fontURL, CTFontManagerScope scope, CFErrorRef * error) 22 { 23 printf("STUB %s\n", __PRETTY_FUNCTION__); 24 return false; 25 }