fceugx/source/ngc/networkop.h

25 lines
524 B
C
Raw Normal View History

2008-09-02 01:57:21 +00:00
/****************************************************************************
2009-07-22 02:05:49 +00:00
* FCE Ultra
2008-09-02 01:57:21 +00:00
* Nintendo Wii/Gamecube Port
*
2008-12-24 07:58:23 +00:00
* Tantric December 2008
2008-09-02 01:57:21 +00:00
*
2008-12-24 07:58:23 +00:00
* networkop.h
2008-09-02 01:57:21 +00:00
*
2008-12-24 07:58:23 +00:00
* Network and SMB support routines
2008-09-02 01:57:21 +00:00
****************************************************************************/
2008-12-24 07:58:23 +00:00
#ifndef _NETWORKOP_H_
#define _NETWORKOP_H_
2008-09-02 01:57:21 +00:00
2008-12-24 07:58:23 +00:00
void UpdateCheck();
bool DownloadUpdate();
void InitializeNetwork(bool silent);
2008-09-02 01:57:21 +00:00
bool ConnectShare (bool silent);
void CloseShare();
2008-10-14 09:21:58 +00:00
2008-12-24 07:58:23 +00:00
extern bool updateFound;
extern bool inNetworkInit;
2008-12-24 07:58:23 +00:00
2008-09-02 01:57:21 +00:00
#endif