Commit 275fc471 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add a stub for WerSetFlags.

parent b3d7896a
...@@ -1249,6 +1249,7 @@ ...@@ -1249,6 +1249,7 @@
@ stdcall WaitNamedPipeW (wstr long) @ stdcall WaitNamedPipeW (wstr long)
@ stdcall WerRegisterFile(wstr long long) @ stdcall WerRegisterFile(wstr long long)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr) @ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ stdcall WerSetFlags(long)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr) @ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall WinExec(str long) @ stdcall WinExec(str long)
@ stdcall Wow64EnableWow64FsRedirection(long) @ stdcall Wow64EnableWow64FsRedirection(long)
......
...@@ -51,3 +51,15 @@ HRESULT WINAPI WerRegisterRuntimeExceptionModule(PCWSTR callbackdll, PVOID conte ...@@ -51,3 +51,15 @@ HRESULT WINAPI WerRegisterRuntimeExceptionModule(PCWSTR callbackdll, PVOID conte
FIXME("(%s, %p) stub!\n", debugstr_w(callbackdll), context); FIXME("(%s, %p) stub!\n", debugstr_w(callbackdll), context);
return S_OK; return S_OK;
} }
/***********************************************************************
* WerSetFlags (KERNEL32.@)
*
* Sets error reporting flags for the current process.
*/
HRESULT WINAPI WerSetFlags(DWORD flags)
{
FIXME("(%d) stub!\n", flags);
return E_NOTIMPL;
}
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