How can I quickly retrieve Internet Explorer's proxy settings from C++?
The windows function WinHTTPGetIEProxyConfigForCurrentUser() gives me exactly what I want...
The problem with WinHTTPGetIEProxyConfigForCurrentUser() is it is running unacceptably slowly on some of my user's systems (they are running Windows 7). For these users, the function takes multiple seconds to complete. It seems to have a networking dependency, since if they unplug the network cable the function returns fast (and with the same result).
So how can I get the system proxy settings without this slow network dependency?
Thanks!