mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +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;
|
||
|
}
|
||
|
}
|