CPF/CPF.Mac/Mac/CoreText/CTFontManagerError.cs
2023-11-21 23:05:03 +08:00

16 lines
277 B
C#

namespace CPF.Mac.CoreText
{
public enum CTFontManagerError
{
None = 0,
FileNotFount = 101,
InsufficientPermissions = 102,
UnrecognizedFormat = 103,
InvalidFontData = 104,
AlreadyRegistered = 105,
NotRegistered = 201,
InUse = 202,
SystemRequired = 202
}
}