The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
FNFREE macro
The FNFREE macro provides the declaration for the application-defined callback function to free previously allocated memory in an FDI context.
Syntax
void FNFREE( [in, optional] void HUGE *pv );
Parameters
- pv [in, optional]
-
Pointer to the allocated memory block to free.
Return value
This macro does not return a value.
Remarks
The function accepts parameters similar to free.
Examples
FNFREE(fnMemFree)
{
free(pv);
}
Requirements
|
Header |
|
|---|
See also
Show: