mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
19 lines
270 B
C
19 lines
270 B
C
|
|
||
|
#ifndef _PROXYSETTINGS_
|
||
|
#define _PROXYSETTINGS_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
void getProxyInfo();
|
||
|
char *getProxyAddress();
|
||
|
u16 getProxyPort();
|
||
|
char *getProxyUsername();
|
||
|
char *getProxyPassword();
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _PROXYSETTINGS_ */
|