| 511 | } |
| 512 | |
| 513 | bool 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 | |
| 526 | void ApiReader::parseModuleWithOwnProcess( ModuleInfo * module ) |
| 527 | { |
nothing calls this directly
no outgoing calls
no test coverage detected