Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ WaitForInputIdleCore()

bool System.Diagnostics.Process.WaitForInputIdleCore ( int milliseconds)
inlineprivate

Definition at line 2249 of file Process.cs.

2250 {
2251 using SafeProcessHandle handle = GetProcessHandle(1049600);
2252 return global::Interop.User32.WaitForInputIdle(handle, milliseconds) switch
2253 {
2254 0 => true,
2255 258 => false,
2257 };
2258 }
SafeProcessHandle GetProcessHandle()
Definition Process.cs:1690
static string InputIdleUnkownError
Definition SR.cs:48
Definition SR.cs:7

References System.Diagnostics.Process.GetProcessHandle(), System.handle, and System.SR.InputIdleUnkownError.

Referenced by System.Diagnostics.Process.WaitForInputIdle().