您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
17 行
411 B
17 行
411 B
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Unity.iOS.Multipeer
|
|
{
|
|
internal static class NativeApi
|
|
{
|
|
public static void CFRelease(ref IntPtr ptr)
|
|
{
|
|
CFRelease(ptr);
|
|
ptr = IntPtr.Zero;
|
|
}
|
|
|
|
[DllImport("__Internal", EntryPoint="UnityMC_CFRelease")]
|
|
public static extern void CFRelease(IntPtr ptr);
|
|
}
|
|
}
|