| 994 | } |
| 995 | |
| 996 | void ApiReader::addFoundApiToModuleList(DWORD_PTR iatAddressVA, ApiInfo * apiFound, bool isNewModule, bool isSuspect) |
| 997 | { |
| 998 | if (isNewModule) |
| 999 | { |
| 1000 | addModuleToModuleList(apiFound->module->getFilename(), iatAddressVA - targetImageBase); |
| 1001 | } |
| 1002 | addFunctionToModuleList(apiFound, iatAddressVA, iatAddressVA - targetImageBase, apiFound->ordinal, true, isSuspect); |
| 1003 | } |
| 1004 | |
| 1005 | bool ApiReader::addModuleToModuleList(const WCHAR * moduleName, DWORD_PTR firstThunk) |
| 1006 | { |
no test coverage detected