mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 16:35:16 +01:00
24 lines
523 B
C
24 lines
523 B
C
/****************************************************************************
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric December 2008
|
|
*
|
|
* 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
|