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

Method findModuleByName

Scylla/ApiReader.cpp:235–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233}
234
235ModuleInfo * ApiReader::findModuleByName(WCHAR *name)
236{
237 for (unsigned int i = 0; i < moduleList.size(); i++) {
238 if (!_wcsicmp(moduleList[i].getFilename(), name))
239 {
240 return &moduleList[i];
241 }
242 }
243
244 return 0;
245}
246
247void ApiReader::addApiWithoutName(WORD ordinal, DWORD_PTR va, DWORD_PTR rva,bool isForwarded, ModuleInfo *moduleInfo)
248{

Callers

nothing calls this directly

Calls 1

getFilenameMethod · 0.80

Tested by

no test coverage detected