mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
18 lines
264 B
C++
18 lines
264 B
C++
#include "Utils.h"
|
|
|
|
char *getSystemProxy() {
|
|
return "";
|
|
}
|
|
|
|
int Utils::getProxyPort() {
|
|
return 0;
|
|
}
|
|
|
|
char * Utils::getProxy() {
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
|
#else
|
|
getSystemProxy();
|
|
#endif
|
|
return "";
|
|
}
|