mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-27 05:50:27 +00:00
26 lines
616 B
Objective-C
26 lines
616 B
Objective-C
#import <CoreText/CTFontManager.h>
|
|
|
|
bool CTFontManagerRegisterGraphicsFont(CGFontRef font, CFErrorRef* error)
|
|
{
|
|
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
|
return nil;
|
|
}
|
|
|
|
bool CTFontManagerUnregisterGraphicsFont(CGFontRef font, CFErrorRef *error)
|
|
{
|
|
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
|
return nil;
|
|
}
|
|
|
|
CFArrayRef CTFontManagerCopyAvailableFontFamilyNames(void)
|
|
{
|
|
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
|
return nil;
|
|
}
|
|
|
|
bool CTFontManagerRegisterFontsForURL(CFURLRef fontURL, CTFontManagerScope scope, CFErrorRef * error)
|
|
{
|
|
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
|
return false;
|
|
}
|