Information
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.

FNFCIFREE macro

The FNFCIFREE macro provides the declaration for the application-defined callback function to free previously allocated memory in an FCI context.

Syntax


void FNFCIFREE(
   void HUGE *memory
);

Parameters

memory

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


FNFCIFREE(fnMemFree)
{
    free(memory);
}


Requirements

Header

Fci.h

See also

FCICreate

 

 

Show: