]> Shamusworld >> Repos - virtualjaguar/blob - src/state.h
7ff759791947aa2dd0ff7e54878cf83830e05329
[virtualjaguar] / src / state.h
1 //
2 // state.h: Machine state save/load support
3 //
4 // by James L. Hammons
5 //
6
7 #ifndef __STATE_H__
8 #define __STATE_H__
9
10 //#include <stdio.h>
11
12 //#ifdef __cplusplus
13 //extern "C" {
14 //#endif
15
16 //int LogInit(const char *);
17 //FILE * LogGet(void);
18 //void LogDone(void);
19 //void WriteLog(const char * text, ...);
20
21 //#ifdef __cplusplus
22 //}
23 //#endif
24
25 bool SaveState(void);
26 bool LoadState(void);
27
28 #endif  // __STATE_H__