FNFCIFREE macro (fci.h)

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

Syntax

void FNFCIFREE(
   fn
);

Parameters

fn

Pointer to the allocated memory block to free.

Return value

None

Remarks

The function accepts parameters similar to free.

Examples

FNFCIFREE(fnMemFree)
{
    free(memory);
}

Requirements

Requirement Value
Target Platform Windows
Header fci.h

See also

FCICreate