2008-08-06 01:09:59 +00:00
|
|
|
/****************************************************************************
|
2010-01-27 22:20:37 +00:00
|
|
|
* Snes9x Nintendo Wii/Gamecube Port
|
2008-08-13 22:44:59 +00:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007-July 2007
|
2008-11-12 07:50:39 +00:00
|
|
|
* Michniewski 2008
|
2010-01-27 22:20:37 +00:00
|
|
|
* Tantric 2008-2010
|
2008-08-13 22:44:59 +00:00
|
|
|
*
|
|
|
|
* freeze.h
|
2008-09-12 05:28:40 +00:00
|
|
|
***************************************************************************/
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2009-11-25 06:35:14 +00:00
|
|
|
#ifndef _FREEZE_H_
|
|
|
|
#define _FREEZE_H_
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2009-11-25 06:35:14 +00:00
|
|
|
int SaveSnapshot (char * filepath, bool silent);
|
|
|
|
int SaveSnapshotAuto (bool silent);
|
|
|
|
int LoadSnapshot (char * filepath, bool silent);
|
|
|
|
int LoadSnapshotAuto (bool silent);
|
2016-02-06 14:40:46 -07:00
|
|
|
int SavePreviewImg (char * filepath, bool silent);
|
2008-08-06 01:09:59 +00:00
|
|
|
#endif
|