The GetProcessHeap function obtains a handle to the heap of the calling process. This handle can then be used in calls to the HeapAlloc, HeapReAlloc, HeapFree, and HeapSize functions.
HANDLE GetProcessHeap(VOID)
This function has no parameters.
If the function succeeds, the return value is a handle to the calling process’s heap.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
GetProcessHeap allows Win32-based applications to allocate memory from the process heap without having to first create a heap with the HeapCreate function, as shown in this example:
HeapAlloc(GetProcessHeap(), 0, dwBytes);
Note that the handle obtained by calling the function should not be used in calls to the HeapDestroy function.
Note, also, that the HEAP_NO_SERIALIZE flag should not be specified when using the HeapAlloc, HeapFree, HeapReAlloc, and HeapSize functions to access the process heap. The system may create additional threads within the application’s process, such as a Ctrl+C handler, that simultaneously access the process heap. For more information about HEAP_NO_SERIALIZE, see the HeapCreate function.
GetProcessHeaps, HeapAlloc, HeapCreate, HeapDestroy, HeapFree, HeapReAlloc, HeapSize
file: /Techref/os/win/api/win32/func/src/f37_6.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/4 14:35,
3.138.143.72:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.org/Techref/os/win/api/win32/func/src/f37_6.htm"> GetProcessHeap</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.