MCPcopy Create free account
hub / github.com/NtQuery/Scylla / addUnknownModuleToModuleList

Method addUnknownModuleToModuleList

Scylla/ImportsHandling.cpp:642–651  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

640}
641
642void ImportsHandling::addUnknownModuleToModuleList(DWORD_PTR firstThunk)
643{
644 ImportModuleThunk module;
645
646 module.firstThunk = firstThunk;
647 wcscpy_s(module.moduleName, L"?");
648
649 module.key = module.firstThunk;
650 moduleListNew[module.key] = module;
651}
652
653bool ImportsHandling::addNotFoundApiToModuleList(const ImportThunk * apiNotFound)
654{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected