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

Method isModuleLoadedInOwnProcess

Scylla/ApiReader.cpp:513–524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

511}
512
513bool ApiReader::isModuleLoadedInOwnProcess(ModuleInfo * module)
514{
515 for (unsigned int i = 0; i < ownModuleList.size(); i++)
516 {
517 if (!_wcsicmp(module->fullPath, ownModuleList[i].fullPath))
518 {
519 //printf("isModuleLoadedInOwnProcess :: %s %s\n",module->fullPath,ownModuleList[i].fullPath);
520 return true;
521 }
522 }
523 return false;
524}
525
526void ApiReader::parseModuleWithOwnProcess( ModuleInfo * module )
527{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected