mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
1129a26b44
Uses MEM2 for downloads, improves timeout handling and adds proxy support.
18 lines
284 B
C
18 lines
284 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_ */
|