IsHungAppWindow (user32)
Last changed: -131.107.0.72

.
Summary
You call the IsHungAppWindow function to determine if Microsoft Windows considers that a specified application is not responding.

C# Signature:

[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool IsHungAppWindow(IntPtr hWnd);

VB Signature:

Private Declare Auto Function IsHungAppWindow Lib "user32.dll" (ByVal hwnd As IntPtr) As Boolean

User-Defined Types:

None.

Alternative Managed API:

Process.Responding is similar.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation