CPF/CPF.Mac/Mac/CoreText/CTParagraphStyleSettingValue.cs

19 lines
300 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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;
}
}