Index

C/C++ Functions

txFree

void txFree(void* mem_addr)

Short Description: Free memory allocated by the module

The txFree function is used to release memory allocated by D-Type Unicode Text Module. Any memory allocated by a call to one of D-Type Unicode Text Module functions is owned by D-Type Unicode Text Module and must be freed by txFree.

Parameters

ParameterDescription

mem_addr

Memory address at which the memory block to be released begins. This must be a valid pointer to a memory buffer that was previously allocated by one of D-Type Unicode Text Module's memory allocation functions (e.g. txTextDraw).

 

Index