On Thu, Jul 10, 2008 at 4:58 PM, Zac Brown zac@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).