Display application success in playground

This commit is contained in:
momo5502
2025-06-30 17:32:24 +02:00
parent 9abdae11cb
commit 415d2d2efe
13 changed files with 318 additions and 23 deletions

View File

@@ -230,4 +230,11 @@ namespace debugger
suspend_execution(2ms);
}
}
void handle_exit(std::optional<NTSTATUS> exit_status)
{
Debugger::ApplicationExitT response{};
response.exit_status = exit_status;
send_event(response);
}
}