![]() |
Home |
|
Function RTKFreeBufferFunction RTKFreeBuffer passes a buffer to a Memory Pool: void RTKFreeBuffer(RTKMemPool * Pool, void * Buffer); ParametersPoolPointer to the pool handle of the pool to which to free the buffer. BufferPointer to the buffer to free. The buffer must have been retrieved previously from the same pool. It must be ensured that the same buffer is not passed to a pool twice by RTKFreeBuffer, because this would destroy the Memory Pool. This condition is not recognized by RTKFreeBuffer and the program will crash in most cases.
|