mirror of
https://github.com/dborth/fceugx.git
synced 2025-07-28 03:37:27 +02:00

* Complete rewrite of loading code - FDS / UNIF / NSF support added! * VS games work (coin insert submitted by pakitovic) * Mapping of 'Special' commands - VS coin insert, FDS switch disk (default A) * 480p and DVD now available for GameCube * Improved stability - less crashes!
27 lines
685 B
C
27 lines
685 B
C
/****************************************************************************
|
|
* FCE Ultra 0.98.12
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* smbop.h
|
|
*
|
|
* SMB support routines
|
|
****************************************************************************/
|
|
|
|
#ifndef _SMBOP_H_
|
|
|
|
#define _SMBOP_H_
|
|
|
|
bool InitializeNetwork(bool silent);
|
|
bool ConnectShare (bool silent);
|
|
char * SMBPath(char * path);
|
|
int UpdateSMBdirname();
|
|
int ParseSMBdirectory ();
|
|
int LoadSMBFile ();
|
|
int LoadSaveBufferFromSMB (char *filepath, bool silent);
|
|
int LoadBufferFromSMB (char * sbuffer, char *filepath, bool silent);
|
|
int SaveBufferToSMB (char *filepath, int datasize, bool silent);
|
|
|
|
#endif
|