mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:41:40 +00:00
[DBGHELP] Fix 3 MSVC warnings about MiniDumpWriteDump() (#643)
- Fixes MSVC errors: "...\dll\win32\dbghelp\minidump.c(857) : error C4028: formal parameter 5 different from declaration", for parameters 5, 6 and 7. - Fix spec file too. CORE-7538
This commit is contained in:
parent
4d494caf61
commit
3766d836c7
2 changed files with 4 additions and 4 deletions
|
@ -901,9 +901,9 @@ MiniDumpWriteDump(
|
|||
_In_ DWORD,
|
||||
_In_ HANDLE,
|
||||
_In_ MINIDUMP_TYPE,
|
||||
_In_opt_ const PMINIDUMP_EXCEPTION_INFORMATION,
|
||||
_In_opt_ const PMINIDUMP_USER_STREAM_INFORMATION,
|
||||
_In_opt_ const PMINIDUMP_CALLBACK_INFORMATION);
|
||||
_In_opt_ PMINIDUMP_EXCEPTION_INFORMATION,
|
||||
_In_opt_ PMINIDUMP_USER_STREAM_INFORMATION,
|
||||
_In_opt_ PMINIDUMP_CALLBACK_INFORMATION);
|
||||
|
||||
BOOL
|
||||
WINAPI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue