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

#include "h-basic.h"

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

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

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