vbagx/source/networkop.h

24 lines
506 B
C
Raw Normal View History

/****************************************************************************
2008-09-17 04:27:55 +02:00
* Visual Boy Advance GX
*
2008-12-24 08:52:35 +01:00
* Tantric December 2008
*
2008-12-24 08:52:35 +01:00
* networkop.h
*
2008-12-24 08:52:35 +01:00
* Network and SMB support routines
****************************************************************************/
2008-12-24 08:52:35 +01:00
#ifndef _NETWORKOP_H_
#define _NETWORKOP_H_
2008-12-24 08:52:35 +01:00
void UpdateCheck();
bool DownloadUpdate();
2010-08-18 02:15:41 +02:00
void StartNetworkThread();
bool InitializeNetwork(bool silent);
bool ConnectShare (bool silent);
2008-12-18 19:58:30 +01:00
void CloseShare();
2008-12-24 08:52:35 +01:00
extern bool updateFound;
#endif