fceugx/source/ngc/networkop.h

25 lines
524 B
C
Raw Normal View History

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