Function Memory.deleteMemEntries

DeleteMemList -- Free a MemEntries previously allocated with CreateMemList

void deleteMemEntries (
  Memory.MemEntries* memList
);

This function frees a MemEntries structure previously allocated with CreateMemList(). This functions does no checks, if the memory allocated with this MemEntries is already freed.

Parameters

NameDescription
memList pointer to MemEntries structure to free

Notes

The structure must be allocated with CreateMemList before, or initialized correctly by hand. Memory allocated with this MemEntries must be already freed with FreeEntry() before this function is called.

See

AllocEntry(), FreeEntry(), CreateMemList()