INtime SDK Help
HeapFree (iwin32)
INtime SDK v7 > About INtime > Alternate APIs > iwin32 API > iwin32 API > HeapFree (iwin32)

Provides the same features as free. Provided only for compatibility.

BOOLEAN HeapFree(
    HANDLE hHeap,
    DWORD dwFlags,
    LPVOID lpMem
);

Parameters

hHeap
Ignored.
dwFlags
Ignored.
lpMem
Pointer to the memory to free. HeapAlloc or HeapReAlloc returns this pointer.

Return Values

Nonzero
Success.
0 (zero)
Failure. For extended error information, see GetLastError.

Requirements

Versions Defined in Include Link to
INtime 3.0 intime/rt/include/winbase.h windows.h iwin32.lib

Note

This function operates in the real-time portion of your application.

See Also

free, HeapAlloc, HeapReAlloc, HeapSize, iwin32 API, iwin32 Overview