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;
|
|
}
|
|
}
|