CPF/CPF.Mac/Mac/CoreFoundation/CFObject.cs

15 lines
402 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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);
}
}