Share via


OomUI_OomWndProc

This function is the window procedure for the Out of Memory window.

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

Parameters

  • hwnd
    Handle of the Out of Memory 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

OomUI_NotRespondingWndProc

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.