darling-cocotron/CoreText/CTFontManager.m
2023-03-27 10:25:05 +00:00

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;
}