2008-08-06 01:09:59 +00:00
|
|
|
/****************************************************************************
|
2008-09-12 05:28:40 +00:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
2008-09-12 05:28:40 +00:00
|
|
|
* crunchy2 May-June 2007
|
|
|
|
* Tantric September 2008
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-09-12 05:28:40 +00:00
|
|
|
* memcardop.cpp
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-09-12 05:28:40 +00:00
|
|
|
* Memory Card routines
|
|
|
|
***************************************************************************/
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#ifndef _NGCMCSAVE_
|
|
|
|
#define _NGCMCSAVE_
|
|
|
|
|
2008-11-12 07:50:39 +00:00
|
|
|
int LoadMCFile (char *buf, int slot, char *filename, bool silent);
|
|
|
|
int SaveMCFile (char *buf, int slot, char *filename, int datasize, bool silent);
|
2008-08-08 07:57:01 +00:00
|
|
|
bool TestCard(int slot, bool silent);
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#endif
|