Commit e9dad9d7 authored by Roman Stingler's avatar Roman Stingler Committed by Alexandre Julliard

kernel32: Add stub WerUnregisterRuntimeExceptionModule.

parent 7ef5f3be
...@@ -5,6 +5,6 @@ ...@@ -5,6 +5,6 @@
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr) kernel32.WerRegisterRuntimeExceptionModule @ stdcall WerRegisterRuntimeExceptionModule(wstr ptr) kernel32.WerRegisterRuntimeExceptionModule
@ stub WerUnregisterFile @ stub WerUnregisterFile
@ stdcall WerUnregisterMemoryBlock(ptr) kernel32.WerUnregisterMemoryBlock @ stdcall WerUnregisterMemoryBlock(ptr) kernel32.WerUnregisterMemoryBlock
@ stub WerUnregisterRuntimeExceptionModule @ stdcall WerUnregisterRuntimeExceptionModule(wstr ptr) kernel32.WerUnregisterRuntimeExceptionModule
@ stub WerpNotifyLoadStringResource @ stub WerpNotifyLoadStringResource
@ stub WerpNotifyUseStringResource @ stub WerpNotifyUseStringResource
...@@ -1591,7 +1591,7 @@ ...@@ -1591,7 +1591,7 @@
@ stdcall WerSetFlags(long) @ stdcall WerSetFlags(long)
# @ stub WerUnregisterFile # @ stub WerUnregisterFile
@ stdcall WerUnregisterMemoryBlock(ptr) @ stdcall WerUnregisterMemoryBlock(ptr)
# @ stub WerUnregisterRuntimeExceptionModule @ stdcall WerUnregisterRuntimeExceptionModule(wstr ptr)
# @ stub WerpCleanupMessageMapping # @ stub WerpCleanupMessageMapping
# @ stub WerpInitiateRemoteRecovery # @ stub WerpInitiateRemoteRecovery
# @ stub WerpNotifyLoadStringResource # @ stub WerpNotifyLoadStringResource
......
...@@ -81,3 +81,12 @@ HRESULT WINAPI WerUnregisterMemoryBlock(void *block) ...@@ -81,3 +81,12 @@ HRESULT WINAPI WerUnregisterMemoryBlock(void *block)
FIXME("(%p) stub\n", block); FIXME("(%p) stub\n", block);
return E_NOTIMPL; 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 @@ ...@@ -1709,7 +1709,7 @@
@ stdcall WerSetFlags(long) kernel32.WerSetFlags @ stdcall WerSetFlags(long) kernel32.WerSetFlags
# @ stub WerUnregisterFile # @ stub WerUnregisterFile
@ stdcall WerUnregisterMemoryBlock(ptr) kernel32.WerUnregisterMemoryBlock @ stdcall WerUnregisterMemoryBlock(ptr) kernel32.WerUnregisterMemoryBlock
# @ stub WerUnregisterRuntimeExceptionModule @ stdcall WerUnregisterRuntimeExceptionModule(wstr ptr) kernel32.WerUnregisterRuntimeExceptionModule
# @ stub WerpNotifyLoadStringResource # @ stub WerpNotifyLoadStringResource
# @ stub WerpNotifyUseStringResource # @ stub WerpNotifyUseStringResource
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr) kernel32.WideCharToMultiByte @ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr) kernel32.WideCharToMultiByte
......
...@@ -186,6 +186,8 @@ HRESULT WINAPI WerReportSetUIOption(HREPORT, WER_REPORT_UI, PCWSTR); ...@@ -186,6 +186,8 @@ HRESULT WINAPI WerReportSetUIOption(HREPORT, WER_REPORT_UI, PCWSTR);
HRESULT WINAPI WerReportSubmit(HREPORT, WER_CONSENT, DWORD, PWER_SUBMIT_RESULT); HRESULT WINAPI WerReportSubmit(HREPORT, WER_CONSENT, DWORD, PWER_SUBMIT_RESULT);
HRESULT WINAPI WerSetFlags(DWORD flags); HRESULT WINAPI WerSetFlags(DWORD flags);
HRESULT WINAPI WerUnregisterMemoryBlock(void *block); HRESULT WINAPI WerUnregisterMemoryBlock(void *block);
HRESULT WINAPI WerUnregisterRuntimeExceptionModule(PCWSTR callbackdll, void *context);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
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