File: system.h

package info (click to toggle)
xconq 7.1.0-7
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 7,056 kB
  • ctags: 7,960
  • sloc: ansic: 88,493; perl: 2,057; sh: 1,766; makefile: 1,110; csh: 81; awk: 47; lisp: 39
file content (29 lines) | stat: -rw-r--r-- 1,339 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* Definitions of system-specific things for Xconq.
   Copyright (C) 1995, 1996 Stanley T. Shebs.

Xconq is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.  See the file COPYING.  */

/* Note that this assumes module.h is already included. */

extern FILE *open_module_library_file PARAMS ((Module *module));
extern FILE *open_module_explicit_file PARAMS ((Module *module));
extern FILE *open_library_file PARAMS ((char *filename));
extern char *default_library_filename PARAMS ((void));
extern char *news_filename PARAMS ((void));
extern char *saved_game_filename PARAMS ((void));
extern char *checkpoint_filename PARAMS ((void));
extern char *error_save_filename PARAMS ((void));
extern char *statistics_filename PARAMS ((void));
extern FILE *open_scorefile_for_reading PARAMS ((char *name));
extern FILE *open_scorefile_for_writing PARAMS ((char *name));
extern void make_pathname PARAMS ((char *path, char *name, char *extn,
				  char *pathbuf));
extern void remove_saved_game PARAMS ((void));
extern void init_signal_handlers PARAMS ((void));
extern int n_seconds_elapsed PARAMS ((int n));
extern int n_ms_elapsed PARAMS ((int n));
extern void record_ms PARAMS ((void));