snes9xgx/source/ngc/memcardop.h

23 lines
629 B
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
* crunchy2 May-June 2007
2009-03-11 18:28:37 +01:00
* Tantric 2008-2009
*
* memcardop.cpp
*
* Memory Card routines
***************************************************************************/
2009-03-28 20:03:35 +01:00
#ifndef _MEMCARDOP_
#define _MEMCARDOP_
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]);
#endif