LhSetInclusiveACL() private method

private LhSetInclusiveACL ( [ SizeParamIndex = 1)]Int32[]InThreadIdList, Int32 InThreadCount, IntPtr InHandle ) : Int32
SizeParamIndex [
InThreadCount System.Int32
InHandle System.IntPtr
return System.Int32
Exemplo n.º 1
0
 public static void LhSetInclusiveACL(
     Int32[] InThreadIdList,
     Int32 InThreadCount,
     IntPtr InHandle)
 {
     if (Is64Bit)
     {
         Force(NativeAPI_x64.LhSetInclusiveACL(InThreadIdList, InThreadCount, InHandle));
     }
     else
     {
         Force(NativeAPI_x86.LhSetInclusiveACL(InThreadIdList, InThreadCount, InHandle));
     }
 }