Share via


OomUI_NotRespondingWndProc (Compact 2013)

3/28/2014

This function is the window procedure for the Application Not Responding window.

Syntax

LRESULT CALLBACK OomUI_NotRespondingWndProc( 
  HWND hwnd, 
  UINT message, 
  WPARAM wParam, 
  LPARAM lParam 
);

Parameters

  • hwnd
    Handle of the Application Not Responding window.
  • message
    Unsigned integer that contains a Windows message (for example, WM_CLOSE).
  • wParam
    Short integer that contains a message-specific parameter.
  • lParam
    Long integer that contains a message-specific parameter.

Remarks

Because the system is low on memory when this function is called, the function should avoid allocating memory. When this function is called, the system is running only those threads whose priority is THREAD_PRIORITY_HIGHEST or higher. Therefore, the function should not try to communicate with unknown threads, which may not be able to respond.

Requirements

Header

oomui.h

See Also

Reference

Out of Memory User Interface Functions
OomUI_OomWndProc