R3AllocSilent
void *R3AllocSilent(int size, int flags);
size - number of bytes to be allocated
address of the allocated memory
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.