winhttp: main.c: Add stub implementation for WinHttpGetDefaultProxyConfiguration

James Hawkins truiken at gmail.com
Thu Jul 10 17:05:18 CDT 2008


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



More information about the wine-devel mailing list