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

Method addModuleToModuleList

Scylla/ImportsHandling.cpp:612–622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

610}
611
612bool ImportsHandling::addModuleToModuleList(const WCHAR * moduleName, DWORD_PTR firstThunk)
613{
614 ImportModuleThunk module;
615
616 module.firstThunk = firstThunk;
617 wcscpy_s(module.moduleName, moduleName);
618
619 module.key = module.firstThunk;
620 moduleListNew[module.key] = module;
621 return true;
622}
623
624bool ImportsHandling::isNewModule(const WCHAR * moduleName)
625{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected