mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2025-02-26 03:35:30 +00:00
20 lines
647 B
C
20 lines
647 B
C
#ifndef __MDFN_STATE_DRIVER_H
|
|
#define __MDFN_STATE_DRIVER_H
|
|
|
|
#include "video.h"
|
|
#include "state-common.h"
|
|
|
|
void MDFNI_SelectState(int);
|
|
|
|
/* "fname" overrides the default save state filename code if non-NULL. */
|
|
/* If suffix is set, just override the default suffix(mc0-mc9) */
|
|
void MDFNI_SaveState(const char *fname, const char *suffix, const MDFN_Surface *surface, const MDFN_Rect *DisplayRect, const MDFN_Rect *LineWidths);
|
|
void MDFNI_LoadState(const char *fname, const char *suffix);
|
|
void MDFNI_EnableStateRewind(int enable);
|
|
|
|
|
|
void MDFND_SetStateStatus(StateStatusStruct *status);
|
|
void MDFND_SetMovieStatus(StateStatusStruct *status);
|
|
|
|
#endif
|