kernel32: Added WerRegisterMemoryBlock stub.

This commit is contained in:
Nikolay Sivov 2012-07-29 12:51:47 +04:00 committed by Alexandre Julliard
parent bf0c67c322
commit 48ff6fa927
2 changed files with 7 additions and 0 deletions

View file

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

View file

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