Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
1/6/2010
This function is the window procedure for the Out of Memory window.
Syntax
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
| Header | oomui.h |
| Windows Embedded CE | Windows CE 2.10 and later |
See Also
Reference
Out of Memory User Interface Functions
OomUI_NotRespondingWndProc