mirror of
https://github.com/0ldsk00l/smsplus.git
synced 2025-04-02 10:32:07 -04:00
14 lines
293 B
C
14 lines
293 B
C
|
|
#ifndef _STATE_H_
|
|
#define _STATE_H_
|
|
|
|
|
|
|
|
#define STATE_VERSION 0x0101 /* Version 1.1 (BCD) */
|
|
#define STATE_HEADER "SST\0" /* State file header */
|
|
|
|
/* Function prototypes */
|
|
void system_save_state(void *fd);
|
|
void system_load_state(void *fd);
|
|
|
|
#endif /* _STATE_H_ */
|