2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* FCE Ultra 0.98.12
|
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
2009-03-28 18:23:08 +01:00
|
|
|
* Tantric 2008-2009
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
|
|
|
* memcardop.h
|
|
|
|
*
|
|
|
|
* Memory Card routines
|
|
|
|
****************************************************************************/
|
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
#ifndef _MEMCARDOP_
|
|
|
|
#define _MEMCARDOP_
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
int ParseMCDirectory (int slot);
|
2008-11-12 09:40:09 +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-28 18:23:08 +01:00
|
|
|
bool TestMC(int slot, bool silent);
|
|
|
|
void SetMCSaveComments(char comments[2][32]);
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|