nesca/Utils.cpp

16 lines
230 B
C++
Raw Normal View History

2015-03-05 14:29:05 +00:00
#include <Utils.h>
2015-03-06 14:32:36 +00:00
char *getSystemProxy() {
}
int Utils::getProxyPort() {
}
char * Utils::getProxy() {
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
#else
getSystemProxy();
#endif
2015-03-05 14:29:05 +00:00
}