R3AltObjectCreate

FUNCTION:

R3AltObjectCreate

TEMPLATE:

void *R3AltObjectCreate(int classid, R3MEMPARAM *p1, ...);

PARAMETERS:

classid - class identifier

RETURN VALUE:

Address of the created object

DESCRIPTION:

The root class allocates memory for all created objects using R3Alloc(). When object is deleted, the memory of it is freed through R3Free() function. If this is not desired, alternative memory allocation procedures can be passed to the root class in p1.

SEE ALSO:

R3AltObjectDelete();