mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
21 lines
529 B
C
21 lines
529 B
C
/****************************************************************************
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
|
*
|
|
* softdev July 2006
|
|
* crunchy2 May 2007-July 2007
|
|
* Michniewski 2008
|
|
* Tantric August 2008
|
|
*
|
|
* freeze.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _FREEZE_H_
|
|
#define _FREEZE_H_
|
|
|
|
int SaveSnapshot (char * filepath, bool silent);
|
|
int SaveSnapshotAuto (bool silent);
|
|
int LoadSnapshot (char * filepath, bool silent);
|
|
int LoadSnapshotAuto (bool silent);
|
|
|
|
#endif
|