home *** CD-ROM | disk | FTP | other *** search
- RenderWare(tm) v1.4 FCS Include Files
- =====================================
-
- ----------------------------------------------------------------------------
- These files are copyright Criterion Software Limited 1994.
-
- RenderWare is a trademark of Canon Inc.
- ----------------------------------------------------------------------------
-
- This directory contains the include files of the RenderWare(tm) v1.4
- release.
-
- This directory contains the following files:
-
- rwlib.h The main include file for RenderWare applications.
- This file contains the function prototypes for all RenderWare
- API functions except for the error handling functions (whose
- prototypes can be found in rwerrors.h). rwlib.h #include's
- rwtypes.h, rwerrors.h and rwmacros.h (but not rwdos.h).
-
- rwtypes.h This include file defines the public and opaque data types
- used by the RenderWare library. It is #include'd by rwlib.h.
-
- rwerrors.h This include file contains the error codes used by RenderWare
- and the prototypes of the API functions which manipulate these
- error codes. This file is #include'd by rwlib.h.
-
- rwmacros.h This include file contains the definitions of the math macros
- used to ease the writing of fixed-point applications and to
- simplify the porting of applications between fixed and floating-
- point. This file is #include'd by rwlib.h.
-
- rwdos.h This include file contains MS-Dos specific definitions
- for RenderWare v1.4. Currently it is only necessary to include
- this file if your application uses certain platform specific
- device information or library configuration options. However,
- to ensure future compatibility it is recommended that all
- source files making RenderWare API calls also include this file.
- This file is not automatically included by rwlib.h and must,
- therefore, be explicitly #include'd after rwlib.h.
-
- doswrap.h Contains a set of helper functions which ease access to
- dos specific device handling. Should only be included once
- as it contains functions. Split it into seperate .c and .h
- files if you wish to access the functions from more than
- one module.
-
- The recommended RenderWare include files for source files making RenderWare API
- calls is, therefore:
-
- #include <rwlib.h>
- #include <rwdos.h>
-
- =================================
-