mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
24 lines
514 B
C
24 lines
514 B
C
/****************************************************************************
|
|
* Snes9x Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric 2008-2010
|
|
*
|
|
* networkop.h
|
|
*
|
|
* Network and SMB support routines
|
|
****************************************************************************/
|
|
|
|
#ifndef _NETWORKOP_H_
|
|
#define _NETWORKOP_H_
|
|
|
|
void UpdateCheck();
|
|
bool DownloadUpdate();
|
|
void InitializeNetwork(bool silent);
|
|
bool ConnectShare (bool silent);
|
|
void CloseShare();
|
|
|
|
extern bool updateFound;
|
|
extern bool inNetworkInit;
|
|
|
|
#endif
|