mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 06:45:46 +00:00
yuzu: Use a debugger to generate minidumps
yuzu: Move mini_dump out of core startup_checks: Better exception handling
This commit is contained in:
parent
9a73dfdf56
commit
554b7e220b
18 changed files with 360 additions and 91 deletions
12
src/yuzu/mini_dump.h
Normal file
12
src/yuzu/mini_dump.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include <dbghelp.h>
|
||||
|
||||
void CreateMiniDump(HANDLE process_handle, DWORD process_id, MINIDUMP_EXCEPTION_INFORMATION* info,
|
||||
EXCEPTION_POINTERS* pep);
|
||||
|
||||
bool SpawnDebuggee(const char* arg0, PROCESS_INFORMATION& pi);
|
||||
void DebugDebuggee(PROCESS_INFORMATION& pi);
|
||||
const char* ExceptionName(DWORD exception);
|
Loading…
Add table
Add a link
Reference in a new issue