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