コード例 #1
0
ファイル: NativeImport.cs プロジェクト: zcanann/CoreHook
 public static void DetourSetInclusiveACL(
     int[] threadIdList,
     int threadCount,
     IntPtr handle)
 {
     if (Is64Bit)
     {
         HandleErrorCode(NativeApi64.DetourSetInclusiveACL(threadIdList, threadCount, handle));
     }
     else
     {
         HandleErrorCode(NativeApi32.DetourSetInclusiveACL(threadIdList, threadCount, handle));
     }
 }