From: Dmitry Timoshkov dmitry@baikal.ru
Signed-off-by: Dmitry Timoshkov dmitry@baikal.ru --- dlls/adsldp/adsldp.c | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/dlls/adsldp/adsldp.c b/dlls/adsldp/adsldp.c index f0e9f8c0b3c..675ca83d03f 100644 --- a/dlls/adsldp/adsldp.c +++ b/dlls/adsldp/adsldp.c @@ -2296,6 +2296,16 @@ static HRESULT WINAPI options_GetOption(IADsObjectOptions *iface, LONG option, V static HRESULT WINAPI options_SetOption(IADsObjectOptions *iface, LONG option, VARIANT var) { FIXME("%p,%ld,%s: stub\n", iface, option, wine_dbgstr_variant(&var)); + + switch (option) + { + case ADS_OPTION_ACCUMULATIVE_MODIFICATION: + return S_OK; + + default: + break; + } + return E_NOTIMPL; }