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
|
2009-03-11 18:28:37 +01:00
|
|
|
* Tantric 2008-2009
|
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_
|
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
int ParseMCDirectory (int slot);
|
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);
|
2009-03-11 18:28:37 +01:00
|
|
|
bool TestMC(int slot, bool silent);
|
2009-03-21 03:01:40 +01:00
|
|
|
void SetMCSaveComments(char comments[2][32]);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|