kernel32: Add stub WerUnregisterRuntimeExceptionModule.
Signed-off-by: Roman Stingler <roman.stingler@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7ef5f3be5a
commit
e9dad9d733
|
@ -5,6 +5,6 @@
|
|||
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr) kernel32.WerRegisterRuntimeExceptionModule
|
||||
@ stub WerUnregisterFile
|
||||
@ stdcall WerUnregisterMemoryBlock(ptr) kernel32.WerUnregisterMemoryBlock
|
||||
@ stub WerUnregisterRuntimeExceptionModule
|
||||
@ stdcall WerUnregisterRuntimeExceptionModule(wstr ptr) kernel32.WerUnregisterRuntimeExceptionModule
|
||||
@ stub WerpNotifyLoadStringResource
|
||||
@ stub WerpNotifyUseStringResource
|
||||
|
|
|
@ -1591,7 +1591,7 @@
|
|||
@ stdcall WerSetFlags(long)
|
||||
# @ stub WerUnregisterFile
|
||||
@ stdcall WerUnregisterMemoryBlock(ptr)
|
||||
# @ stub WerUnregisterRuntimeExceptionModule
|
||||
@ stdcall WerUnregisterRuntimeExceptionModule(wstr ptr)
|
||||
# @ stub WerpCleanupMessageMapping
|
||||
# @ stub WerpInitiateRemoteRecovery
|
||||
# @ stub WerpNotifyLoadStringResource
|
||||
|
|
|
@ -81,3 +81,12 @@ HRESULT WINAPI WerUnregisterMemoryBlock(void *block)
|
|||
FIXME("(%p) stub\n", block);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WerUnregisterRuntimeExceptionModule (KERNEL32.@)
|
||||
*/
|
||||
HRESULT WINAPI WerUnregisterRuntimeExceptionModule(PCWSTR callbackdll, PVOID context)
|
||||
{
|
||||
FIXME("(%s, %p) stub!\n", debugstr_w(callbackdll), context);
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -1709,7 +1709,7 @@
|
|||
@ stdcall WerSetFlags(long) kernel32.WerSetFlags
|
||||
# @ stub WerUnregisterFile
|
||||
@ stdcall WerUnregisterMemoryBlock(ptr) kernel32.WerUnregisterMemoryBlock
|
||||
# @ stub WerUnregisterRuntimeExceptionModule
|
||||
@ stdcall WerUnregisterRuntimeExceptionModule(wstr ptr) kernel32.WerUnregisterRuntimeExceptionModule
|
||||
# @ stub WerpNotifyLoadStringResource
|
||||
# @ stub WerpNotifyUseStringResource
|
||||
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr) kernel32.WideCharToMultiByte
|
||||
|
|
|
@ -186,6 +186,8 @@ HRESULT WINAPI WerReportSetUIOption(HREPORT, WER_REPORT_UI, PCWSTR);
|
|||
HRESULT WINAPI WerReportSubmit(HREPORT, WER_CONSENT, DWORD, PWER_SUBMIT_RESULT);
|
||||
HRESULT WINAPI WerSetFlags(DWORD flags);
|
||||
HRESULT WINAPI WerUnregisterMemoryBlock(void *block);
|
||||
HRESULT WINAPI WerUnregisterRuntimeExceptionModule(PCWSTR callbackdll, void *context);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue