[DllImport("user32.dll")]
static extern uint WaitForInputIdle(IntPtr hProcess, uint dwMilliseconds);
<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Private Shared Function WaitForInputIdle( _
ByVal hProcess As IntPtr, _
ByVal dwMilliseconds As UInteger) As Integer
End Function
None.
Return code/value Description
0 The wait was satisfied successfully.
WAIT_TIMEOUT The wait was terminated because the time-out interval elapsed.
WAIT_FAILED
Please add some!
Please add some!
Do you know one? Please contribute it!