Commit 48ff6fa9 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

kernel32: Added WerRegisterMemoryBlock stub.

parent bf0c67c3
......@@ -1253,6 +1253,7 @@
@ stdcall WaitNamedPipeA (str long)
@ stdcall WaitNamedPipeW (wstr long)
@ stdcall WerRegisterFile(wstr long long)
@ stdcall WerRegisterMemoryBlock(ptr long)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ stdcall WerSetFlags(long)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
......
......@@ -63,3 +63,9 @@ HRESULT WINAPI WerSetFlags(DWORD flags)
FIXME("(%d) stub!\n", flags);
return E_NOTIMPL;
}
HRESULT WINAPI WerRegisterMemoryBlock(void *block, DWORD size)
{
FIXME("(%p %d) stub\n", block, size);
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