mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-21 02:58:12 +08:00
19 lines
400 B
C#
19 lines
400 B
C#
![]() |
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;
|
||
|
}
|
||
|
}
|