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