mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
23 lines
479 B
C
23 lines
479 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* 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;
|
|
|
|
#endif
|