LhSetGlobalExclusiveACL() private method

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