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