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

19 lines
300 B
C#

using System;
using System.Runtime.InteropServices;
namespace CPF.Mac.CoreText
{
[StructLayout(LayoutKind.Explicit)]
internal struct CTParagraphStyleSettingValue
{
[FieldOffset(0)]
public byte int8;
[FieldOffset(0)]
public float single;
[FieldOffset(0)]
public IntPtr pointer;
}
}