CPF/CPF.Mac/Mac/CoreText/CTRunDelegateCallbacks.cs

19 lines
400 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System.Runtime.InteropServices;
namespace CPF.Mac.CoreText
{
[StructLayout(LayoutKind.Sequential)]
internal class CTRunDelegateCallbacks
{
public CTRunDelegateVersion version;
public CTRunDelegateDeallocateCallback dealloc;
public CTRunDelegateGetAscentCallback getAscent;
public CTRunDelegateGetDescentCallback getDescent;
public CTRunDelegateGetWidthCallback getWidth;
}
}