LhSetExclusiveACL() private method

private LhSetExclusiveACL ( [ SizeParamIndex = 1)]Int32[]InThreadIdList, Int32 InThreadCount, IntPtr InHandle ) : Int32
SizeParamIndex [
InThreadCount System.Int32
InHandle System.IntPtr
return System.Int32
コード例 #1
0
ファイル: DllImport.cs プロジェクト: rhmoult/EasyHook
 public static void LhSetExclusiveACL(
     Int32[] InThreadIdList,
     Int32 InThreadCount,
     IntPtr InHandle)
 {
     if (Is64Bit)
     {
         Force(NativeAPI_x64.LhSetExclusiveACL(InThreadIdList, InThreadCount, InHandle));
     }
     else
     {
         Force(NativeAPI_x86.LhSetExclusiveACL(InThreadIdList, InThreadCount, InHandle));
     }
 }