home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-04 | 1.5 KB | 33 lines | [TEXT/MMCC] |
- //------------------------------------------------------------------------------
- // File: config.h
- // Date: 11/04/94
- // Author: Bretton Wade
- //
- // Description: this file contains the configuration loading functions
- //
- //------------------------------------------------------------------------------
-
- #ifndef CONFIG
- #define CONFIG
-
- //------------------------------------------------------------------------------
- // constants
- //------------------------------------------------------------------------------
- const ResType CONFIG_RSRC = 'conf'; // the type of the core configuration resource
-
- //------------------------------------------------------------------------------
- // structures
- //------------------------------------------------------------------------------
- struct core_config // structure defining the configuration data
- { // begin
- Boolean reseedRandom; // whether or not to reseed the random number generator at startup
- Boolean useTempMemory; // whether or not to use temporary memory for data
- }; // end
-
- //------------------------------------------------------------------------------
- // functions
- //------------------------------------------------------------------------------
- void Configure (void); // set up application parameters
-
- //------------------------------------------------------------------------------
- #endif //CONFIG