RCP API  6.61.0

◆ rcp_free()

void rcp_free ( void *  APTR)

Wrapper for freeing memory allocations required by RCP API.

This function must be implemented by the client code. In most cases this can simply be implemented as such:

void rcp_free(void * APTR)
{
free(APTR);
}