home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / t / toaster.zip / Compat / wiz_list.h < prev    next >
C/C++ Source or Header  |  1991-12-31  |  499b  |  22 lines

  1. struct wiz_list {
  2.     char *name;
  3.     int length;
  4.     struct wiz_list *next;
  5.     int score;
  6.     int cost;
  7.     int heart_beats;
  8.     int total_worth;
  9.     int size_array;        /* Total size of this wizards arrays. */
  10.     /*
  11.      * The following values are all used to store the last error
  12.      * message.
  13.      */
  14.     char *file_name;
  15.     char *error_message;
  16.     int line_number;
  17. };
  18.  
  19. extern struct wiz_list *add_name PROT((char *));
  20. struct value;
  21. extern void save_wiz_file(), load_wiz_file(), wiz_decay();
  22.