kernel32: Add a stub for WerRegisterRuntimeExceptionModule.

This commit is contained in:
Austin English 2012-03-04 14:41:18 -08:00 committed by Alexandre Julliard
parent 1163d1c00b
commit f135f18b58
2 changed files with 13 additions and 0 deletions

View File

@ -1244,6 +1244,7 @@
@ stdcall WaitNamedPipeA (str long) @ stdcall WaitNamedPipeA (str long)
@ stdcall WaitNamedPipeW (wstr long) @ stdcall WaitNamedPipeW (wstr long)
@ stdcall WerRegisterFile(wstr long long) @ stdcall WerRegisterFile(wstr long long)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ 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)

View File

@ -39,3 +39,15 @@ HRESULT WINAPI WerRegisterFile(PCWSTR file, WER_REGISTER_FILE_TYPE regfiletype,
FIXME("(%s, %d, %d) stub!\n", debugstr_w(file), regfiletype, flags); FIXME("(%s, %d, %d) stub!\n", debugstr_w(file), regfiletype, flags);
return E_NOTIMPL; return E_NOTIMPL;
} }
/***********************************************************************
* WerRegisterRuntimeExceptionModule (KERNEL32.@)
*
* Register a custom runtime exception handler.
*/
HRESULT WINAPI WerRegisterRuntimeExceptionModule(PCWSTR callbackdll, PVOID context)
{
FIXME("(%s, %p) stub!\n", debugstr_w(callbackdll), context);
return S_OK;
}