summaryrefslogtreecommitdiff
path: root/src/files.h
blob: 0eb99f1515fa682643ed56c6a9f0ee90cb43ae54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "h-basic.h"

// C linkage required for these functions since main-* code uses them.
#ifdef __cplusplus
extern "C" {
#endif

extern void process_player_name(bool_ sf);
extern void do_cmd_save_game(void);
extern void predict_score_gui(bool_ *initialized, bool_ *game_in_progress);

#ifdef __cplusplus
} // extern "C"
#endif