public KernelResult ReplyAndReceive32( [R(0)] uint timeoutLow, [R(1)] ulong handlesPtr, [R(2)] int handlesCount, [R(3)] int replyTargetHandle, [R(4)] uint timeoutHigh, [R(1)] out int handleIndex) { long timeout = (long)(timeoutLow | ((ulong)timeoutHigh << 32)); return(_syscall.ReplyAndReceive(handlesPtr, handlesCount, replyTargetHandle, timeout, out handleIndex)); }