snes9xgx/source/ngc/memfile.h
dborth 6ff361a2cd rewrite of smb code, partially working on Wii
misc bug fixes
function cleanup
2008-08-10 03:14:39 +00:00

31 lines
774 B
C

/****************************************************************************
* Snes9x 1.50 - GX 2.0
*
* NGC Snapshots Memory File System
*
* This is a single global memory file controller. Don't even think of opening two
* at the same time !
*
* There's just enough here to do SnapShots - you should add anything else you
* need.
****************************************************************************/
#ifndef _NGCMEMFILE_
#define _NGCMEMFILE_
typedef struct
{
char filename[512]; /*** Way over size - but who cares -;) ***/
int filehandle;
int currpos;
int length;
int mode;
char *buffer; /*** Memspace for read / write ***/
}
MEMFILE;
int NGCFreezeGame (int method, bool8 silent);
int NGCUnfreezeGame (int method, bool8 silent);
#endif