home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Xconq 7.1.0 / src / xconq-7.1.0 / kernel / system.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-07  |  1.3 KB  |  30 lines  |  [TEXT/R*ch]

  1. /* Definitions of system-specific things for Xconq.
  2.    Copyright (C) 1995, 1996 Stanley T. Shebs.
  3.  
  4. Xconq is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.  See the file COPYING.  */
  8.  
  9. /* Note that this assumes module.h is already included. */
  10.  
  11. extern FILE *open_module_library_file PARAMS ((Module *module));
  12. extern FILE *open_module_explicit_file PARAMS ((Module *module));
  13. extern FILE *open_library_file PARAMS ((char *filename));
  14. extern char *default_library_filename PARAMS ((void));
  15. extern char *news_filename PARAMS ((void));
  16. extern char *saved_game_filename PARAMS ((void));
  17. extern char *checkpoint_filename PARAMS ((void));
  18. extern char *error_save_filename PARAMS ((void));
  19. extern char *statistics_filename PARAMS ((void));
  20. extern FILE *open_scorefile_for_reading PARAMS ((char *name));
  21. extern FILE *open_scorefile_for_writing PARAMS ((char *name));
  22. extern void make_pathname PARAMS ((char *path, char *name, char *extn,
  23.                   char *pathbuf));
  24. extern void remove_saved_game PARAMS ((void));
  25. extern void init_signal_handlers PARAMS ((void));
  26. extern int n_seconds_elapsed PARAMS ((int n));
  27. extern int n_ms_elapsed PARAMS ((int n));
  28. extern void record_ms PARAMS ((void));
  29.  
  30.