Commit 3d2add84 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

kernelbase: Return S_OK in WerSetFlags.

parent c6d0d7f0
...@@ -819,7 +819,7 @@ HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerRegisterRuntimeExceptionModule( const ...@@ -819,7 +819,7 @@ HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerRegisterRuntimeExceptionModule( const
HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerSetFlags( DWORD flags ) HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerSetFlags( DWORD flags )
{ {
FIXME("(%d) stub\n", flags); FIXME("(%d) stub\n", flags);
return E_NOTIMPL; return S_OK;
} }
......
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