mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 23:15:07 +01:00
25 lines
524 B
C
25 lines
524 B
C
/****************************************************************************
|
|
* FCE Ultra
|
|
* 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
|