Changeset 200
- Timestamp:
- 06/21/07 19:58:23 (1 year ago)
- Files:
-
- trunk/src/externs.h (modified) (4 diffs)
- trunk/src/files.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/externs.h
r189 r200 30 30 extern char pf_result[]; 31 31 extern int pf_result_index; 32 33 /* files.c */ 34 extern int score_idx; 32 35 33 36 /* tables.c */ … … 476 479 extern bool findpath(int y, int x); 477 480 481 /* randart.c */ 482 extern errr do_randart(u32b randart_seed, bool full); 483 478 484 /* signals.c */ 479 485 extern void signals_ignore_tstp(void); … … 670 676 #endif /* SUPPORT_GAMMA */ 671 677 678 /* util.c */ 679 extern void repeat_push(int what); 680 extern bool repeat_pull(int *what); 681 extern void repeat_clear(void); 682 extern void repeat_check(void); 683 672 684 /* xtra1.c */ 673 685 extern void cnv_stat(int val, char *out_val, size_t len); … … 717 729 718 730 719 #ifdef ALLOW_REPEAT720 /* util.c */721 extern void repeat_push(int what);722 extern bool repeat_pull(int *what);723 extern void repeat_clear(void);724 extern void repeat_check(void);725 #endif /* ALLOW_REPEAT */726 727 728 #ifdef GJW_RANDART729 /* randart.c */730 extern errr do_randart(u32b randart_seed, bool full);731 #endif /* GJW_RANDART */732 733 731 #ifdef RISCOS 734 732 /* main-ros.c */ trunk/src/files.c
r199 r200 3314 3314 * Hack - save index of player's high score 3315 3315 */ 3316 staticint score_idx = -1;3316 int score_idx = -1; 3317 3317 3318 3318
