10 Jul
2008
10 Jul
'08
10:05 p.m.
On Thu, Jul 10, 2008 at 4:58 PM, Zac Brown <zac(a)zacbrown.org> wrote:
Add stub implementation for WinHttpGetDefaultProxyConfiguration
+BOOL WINAPI WinHttpGetDefaultProxyConfiguration (WINHTTP_PROXY_INFO* pProxyInfo) +{ + FIXME("(%p): stub\n", pProxyInfo); + + SetLastError(ERROR_NOT_SUPPORTED); + return FALSE; +} You need to be consistent with the style of the rest of the file (no space after function names before opening parenthesis). -- James Hawkins