mirror of
https://github.com/dborth/vbagx.git
synced 2024-12-28 03:31:49 +01:00
19 lines
387 B
C
19 lines
387 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* smbload.h
|
|
*
|
|
* SMB support routines
|
|
****************************************************************************/
|
|
|
|
#ifndef _NGCSMB_
|
|
#define _NGCSMB_
|
|
|
|
void InitializeNetwork(bool silent);
|
|
bool ConnectShare (bool silent);
|
|
void CloseShare();
|
|
|
|
#endif
|