From d6b39eb2c32952efe13c8f9c881182059e836ec7 Mon Sep 17 00:00:00 2001 From: tinyAdapter Date: Thu, 7 Feb 2019 21:11:41 +0800 Subject: [PATCH] CLI: add code information when outputing this can be necessary --- GUI/host/cli.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI/host/cli.cpp b/GUI/host/cli.cpp index c672b7e..47bd8ba 100644 --- a/GUI/host/cli.cpp +++ b/GUI/host/cli.cpp @@ -10,9 +10,9 @@ int main() _setmode(_fileno(stdin), _O_U16TEXT); wprintf_s(L"Usage: {'attach'|'detach'|hookcode} -Pprocessid\n"); fflush(stdout); - Host::Start([](auto) {}, [](auto) {}, [](auto) {}, [](auto) {}, [](TextThread* thread, std::wstring& output) + Host::Start([](auto) {}, [](auto) {}, [](auto&) {}, [](auto&) {}, [](TextThread& thread, std::wstring& output) { - wprintf_s(L"[%I64X:%I32X:%I64X:%I64X:%I64X:%s] %s\n", thread->handle, thread->tp.processId, thread->tp.addr, thread->tp.ctx, thread->tp.ctx2, thread->name.c_str(), output.c_str()); + wprintf_s(L"[%I64X:%I32X:%I64X:%I64X:%I64X:%s:%s] %s\n", thread.handle, thread.tp.processId, thread.tp.addr, thread.tp.ctx, thread.tp.ctx2, thread.name.c_str(), Util::GenerateCode(thread.hp, thread.tp.processId).c_str(), output.c_str()); fflush(stdout); return false; });