diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-11-12 23:26:35 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-11-12 23:26:35 +0100 |
commit | 3c33d803326ffbff35731948272264ef5e6d4cfd (patch) | |
tree | 973b69fef8a8789a83c88b01fd3de553daf8551b /TestDLL | |
parent | 6443fa7c373b582ff6c0ad95f4b692a8e3a70a64 (diff) |
print thread id on startup
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/dllmain.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index a95a988..2f93b99 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -330,7 +330,8 @@ void APIENTRY LibEntry(struct HuntCtx * HuntCtx) freopen_s(&conout, "CONOUT$", "w", stdout); printf("Welcome.\n"); - printf("[used memory: %u][cpu flags: %u][user name: %s][cpu count: %d]\n", + printf("[thread id: %d][used memory: %u][cpu flags: %u][user name: %s][cpu count: %d]\n", + GetCurrentThreadId(), iEnt->GetSystem()->GetUsedMemory(), iEnt->GetSystem()->GetCPUFlags(), iEnt->GetSystem()->GetUserName(), |