This function tries to free up memory for an application on a Palm-size PC. If necessary, the shell closes down other applications by sending WM_CLOSE messages.
Header file: | Aygshell.h |
Windows CE Versions: | 2.01 and later |
BOOL SHCloseApps( DWORD dwMemSought );
TRUE indicates success. FALSE indicates failure.
The Palm-size PC shell sends WM_CLOSE messages if there is less than 128 KB of free memory. The shell does not send WM_CLOSE messages if you ask for more memory than is available. For example, the Palm-size PC does not allocate 200 KB of memory if it only has 190 KB free. Instead, the shell displays an Out Of Memory dialog box to the user. There are two ways to deal with the problem. First, allocate memory in small amounts, such as 16 KB so that your application does not run the risk of asking for more memory than is available. Alternatively, call SHCloseApps, which sends WM_CLOSE messages until there is enough memory for the allocation. However, SHCloseApps does not allocate memory to your application; it only frees memory. If a large memory allocation fails in your application, call SHCloseApps. Then, attempt to allocate memory again.