aboutsummaryrefslogtreecommitdiff
path: root/CMD/CMD.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-09-28 19:46:07 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-09-28 19:46:07 +0200
commit37f1a2f66109ed4d16b15880c4a63cc85e9871c2 (patch)
tree1f98882494c880546d1ceba8022898911ddc17f1 /CMD/CMD.cpp
parent8c07c9a9c6628960050de629c08d4e12bfa8e847 (diff)
added CMD symbol resolver
Diffstat (limited to 'CMD/CMD.cpp')
-rw-r--r--CMD/CMD.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMD/CMD.cpp b/CMD/CMD.cpp
index 5d40e54..a007952 100644
--- a/CMD/CMD.cpp
+++ b/CMD/CMD.cpp
@@ -143,7 +143,8 @@ int wmain(int argc, wchar_t **argv)
static bool map_test_dll = true;
if (map_test_dll) {
map_test_dll = false;
- DLLHelper dll;
+ SymbolResolver symres;
+ DLLHelper dll(symres);
if (!dll.Init(targetPID, "./TestDLL.dll")) {
std::wcout << L"DLL Init failed" << std::endl;
}