mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
16 lines
277 B
C#
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
|
|
}
|
|
}
|