home *** CD-ROM | disk | FTP | other *** search
/ Merciful 3 / Merciful_Release_3.bin / software / e / elanv1.00.lha / elan / src / config.h < prev    next >
C/C++ Source or Header  |  1996-06-07  |  334b  |  20 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define CONFIGFILE_NAME     "elan.cfg"
  5.  
  6. typedef struct configuration
  7.     {
  8.     int output_mode;
  9.     int console_width;
  10.     int console_height;
  11.     int style_pen[STYLE_TYPE_NUMBER];
  12.     int color_pen[COLOR_TYPE_NUMBER];
  13.     } configuration;
  14.  
  15. extern configuration cfg;
  16.  
  17. /* Protos */
  18. error_class read_config(void);
  19.  
  20.