ProcUnit::TmpDataFree

Gets the pointer to the temporary work data space

int TmpDataFree(
   BYTE *address
);

Parameters
*address
Starting address of the memory space to be released

Return Value
Returns 0 when the temporary workspace is successfully released.
Otherwise returns a non-zero value.

Description
Releases the temporary workspace allocated by TmpDataAlloc method (see "refProcUnit::TmpDataAlloc").
You cannot release the allocated spaces in an arbitrary order. You must release them sequentially from the one which was allocated last.

Example
See Example in "refProcUnit::TmpDataAlloc" section.