OomUI_NotRespondingWndProc
This function is the window procedure for the Application Not Responding window.
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
OS Versions: Windows CE 2.10 and later.
Header: Oomui.h.
See Also
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.