commit mostly nonworking code

This commit is contained in:
Devin Zuczek
2026-08-18 15:53:45 -04:00
parent 54c97ef6d9
commit b15039ea08
29 changed files with 2797 additions and 43 deletions
+9
View File
@@ -0,0 +1,9 @@
#pragma once
// Detours UnityEngine.Application.Quit() / Quit(int) to log the managed caller and (optionally)
// suppress the shutdown. See src/unity/quit_trace.c.
void PatchQuitTrace(void);
// Call-through hooks on kernel32!ExitProcess / !TerminateProcess that log who tore the process
// down. Installed by PatchQuitTrace; separate entry point so it can be used standalone.
void HookProcessExit(void);