2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
2008-09-12 07:28:40 +02:00
|
|
|
* crunchy2 May-June 2007
|
|
|
|
* Tantric September 2008
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-09-12 07:28:40 +02:00
|
|
|
* memcardop.cpp
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-09-12 07:28:40 +02:00
|
|
|
* Memory Card routines
|
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#ifndef _NGCMCSAVE_
|
|
|
|
#define _NGCMCSAVE_
|
|
|
|
|
2008-11-12 08:50:39 +01: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 09:57:01 +02:00
|
|
|
bool TestCard(int slot, bool silent);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|