Commit f7538bfe authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wininet: Add a stub implementation of INTERNET_OPTION_SUPPRESS_BEHAVIOR.

parent 1a786666
...@@ -2765,6 +2765,15 @@ static DWORD set_global_option(DWORD option, void *buf, DWORD size) ...@@ -2765,6 +2765,15 @@ static DWORD set_global_option(DWORD option, void *buf, DWORD size)
FIXME("INTERNETOPTION_SETTINGS_CHANGED semi-stub\n"); FIXME("INTERNETOPTION_SETTINGS_CHANGED semi-stub\n");
collect_connections(COLLECT_CONNECTIONS); collect_connections(COLLECT_CONNECTIONS);
return ERROR_SUCCESS; return ERROR_SUCCESS;
case INTERNET_OPTION_SUPPRESS_BEHAVIOR:
FIXME("INTERNET_OPTION_SUPPRESS_BEHAVIOR stub\n");
if(size != sizeof(ULONG))
return ERROR_INTERNET_BAD_OPTION_LENGTH;
FIXME("%08x\n", *(ULONG*)buf);
return ERROR_SUCCESS;
} }
return ERROR_INTERNET_INVALID_OPTION; return ERROR_INTERNET_INVALID_OPTION;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment