Re: winhttp: main.c: Add stub implementation for WinHttpGetDefaultProxyConfiguration
July 10, 2008
5: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
6468
Age (days ago)
6468
Last active (days ago)
0 comments
1 participants
participants (1)
-
James Hawkins