Example #1
0
 public static void LhIsThreadIntercepted(
     IntPtr InHandle,
     Int32 InThreadID,
     out Boolean OutResult)
 {
     if (Is64Bit)
     {
         Force(NativeAPI_x64.LhIsThreadIntercepted(InHandle, InThreadID, out OutResult));
     }
     else
     {
         Force(NativeAPI_x86.LhIsThreadIntercepted(InHandle, InThreadID, out OutResult));
     }
 }