mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +08:00
28 lines
357 B
C#
28 lines
357 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreFoundation
|
|
{
|
|
internal struct CFRunLoopSourceContext
|
|
{
|
|
public CFIndex Version;
|
|
|
|
public IntPtr Info;
|
|
|
|
public IntPtr Retain;
|
|
|
|
public IntPtr Release;
|
|
|
|
public IntPtr CopyDescription;
|
|
|
|
public IntPtr Equal;
|
|
|
|
public IntPtr Hash;
|
|
|
|
public IntPtr Schedule;
|
|
|
|
public IntPtr Cancel;
|
|
|
|
public IntPtr Perform;
|
|
}
|
|
}
|