R3AllocSilent

FUNCTION:

R3AllocSilent

TEMPLATE:

void *R3AllocSilent(int size, int flags);

PARAMETERS:

size - number of bytes to be allocated

RETURN VALUE:

address of the allocated memory

DESCRIPTION:

Allocate memory with given size. If flags is R3MEMF_CLEAR the returned memory chunk is filled with zero. If the memory chunk could not be allocated the function returns NULL but does not show error message.