Appendix A: System Routines — Memory Management
853
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
HeapFreeIndir
Declaration:
void
HeapFreeIndir
(HANDLE *
PtrHandle
)
Category(ies):
Memory Management
Description: HeapFreeIndir
is like
HeapFree
only you pass the address of a handle. If
the handle that
PtrHandle
points to is not H_NULL then frees that handle
and sets the handle that is pointed to by
PtrHandle
to H_NULL.
Inputs:
PtrHandle
— A pointer to a handle created with a heap allocation routine
like
HeapAlloc
or
HeapAllocThrow
.
Outputs:
None
Assumptions:
None
Side Effects:
None
Availability:
All versions of the TI
-
89 / TI
-
92 Plus.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: HeapAlloc, HeapAllocHigh, HeapAllocThrow, HeapAllocHighThrow,
HeapFree
Example:
See
HeapAllocThrow
.