wininet: Add a stub implementation of INTERNET_OPTION_SUPPRESS_BEHAVIOR.

This commit is contained in:
Hans Leidekker 2015-07-29 11:38:39 +02:00 committed by Alexandre Julliard
parent 1a78666654
commit f7538bfe47
1 changed files with 9 additions and 0 deletions

View File

@ -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;