RenderWare V2.1

Previous Page Index Next Page

RwBool

RwInitialize(RwStdlib *stdlib);

Description

Initializes the RenderWare library. This call must be made before any library call is made.

Arguments

stdlib either NULL or a pointer to an RwStdlib structure.

Return Value

TRUE if the library has successfully initialized.

Comments

This function must be called before any other RenderWare function of the library functions are used. Note that calling RwOpen() implicitly calls RwInitialize(NULL), there is no need to perform an RwInitialize(NULL) if you are going to open the library using RwOpen().

The stdlib parameter allows the application to overload the memory allocation routines used by RenderWare. The RwStdlib structure if supplied must be complete, all functions must be specified.

See Also

RwRelease()

RwOpen()

RwOpenExt()

RwClose()