The HeapFree function frees a memory block allocated from a heap by the HeapAlloc or HeapReAlloc function.
BOOL HeapFree(
HANDLE hHeap, |
// handle to the heap |
DWORD dwFlags, |
// heap freeing flags |
LPVOID lpMem |
// pointer to the memory to free |
); |
Flag |
Meaning |
HEAP_NO_SERIALIZE |
Specifies that mutual exclusion will not be used while the function is accessing the heap. For more information about HEAP_NO_SERIALIZE, see the Remarks for the HeapCreate function. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. An application can call GetLastError for extended error information.
GetProcessHeap, HeapAlloc, HeapCreate, HeapDestroy, HeapReAlloc, HeapSize, SetLastError