mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +08:00
15 lines
402 B
C#
15 lines
402 B
C#
![]() |
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace CPF.Mac.CoreFoundation
|
||
|
{
|
||
|
public static class CFObject
|
||
|
{
|
||
|
[DllImport("/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation")]
|
||
|
internal static extern void CFRelease(IntPtr obj);
|
||
|
|
||
|
[DllImport("/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation")]
|
||
|
internal static extern IntPtr CFRetain(IntPtr obj);
|
||
|
}
|
||
|
}
|