kernel32: Added WerUnregisterMemoryBlock() stub.

oldstable
Nikolay Sivov 2014-03-20 01:07:49 +04:00 committed by Alexandre Julliard
parent f548ce29ed
commit 975abdea7f
3 changed files with 17 additions and 0 deletions

View File

@ -1275,6 +1275,7 @@
@ stdcall WerRegisterMemoryBlock(ptr long)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ stdcall WerSetFlags(long)
@ stdcall WerUnregisterMemoryBlock(ptr)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall WinExec(str long)
@ stdcall Wow64EnableWow64FsRedirection(long)

View File

@ -64,8 +64,20 @@ HRESULT WINAPI WerSetFlags(DWORD flags)
return E_NOTIMPL;
}
/***********************************************************************
* WerRegisterMemoryBlock (KERNEL32.@)
*/
HRESULT WINAPI WerRegisterMemoryBlock(void *block, DWORD size)
{
FIXME("(%p %d) stub\n", block, size);
return E_NOTIMPL;
}
/***********************************************************************
* WerUnregisterMemoryBlock (KERNEL32.@)
*/
HRESULT WINAPI WerUnregisterMemoryBlock(void *block)
{
FIXME("(%p) stub\n", block);
return E_NOTIMPL;
}

View File

@ -175,6 +175,8 @@ typedef struct _WER_EXCEPTION_INFORMATION
HRESULT WINAPI WerAddExcludedApplication(PCWSTR, BOOL);
HRESULT WINAPI WerRegisterFile(PCWSTR file, WER_REGISTER_FILE_TYPE regfiletype, DWORD flags);
HRESULT WINAPI WerRegisterMemoryBlock(void *block, DWORD size);
HRESULT WINAPI WerRegisterRuntimeExceptionModule(PCWSTR callbackdll, void *context);
HRESULT WINAPI WerRemoveExcludedApplication(PCWSTR, BOOL);
HRESULT WINAPI WerReportAddFile(HREPORT, PCWSTR, WER_FILE_TYPE, DWORD);
HRESULT WINAPI WerReportCloseHandle(HREPORT);
@ -182,6 +184,8 @@ HRESULT WINAPI WerReportCreate(PCWSTR, WER_REPORT_TYPE, PWER_REPORT_INFORMATION,
HRESULT WINAPI WerReportSetParameter(HREPORT, DWORD, PCWSTR, PCWSTR);
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);
#ifdef __cplusplus
}