kernel32: Add a stub for WerRegisterRuntimeExceptionModule.
This commit is contained in:
parent
1163d1c00b
commit
f135f18b58
|
@ -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)
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue