| 640 | } |
| 641 | |
| 642 | void ImportsHandling::addUnknownModuleToModuleList(DWORD_PTR firstThunk) |
| 643 | { |
| 644 | ImportModuleThunk module; |
| 645 | |
| 646 | module.firstThunk = firstThunk; |
| 647 | wcscpy_s(module.moduleName, L"?"); |
| 648 | |
| 649 | module.key = module.firstThunk; |
| 650 | moduleListNew[module.key] = module; |
| 651 | } |
| 652 | |
| 653 | bool ImportsHandling::addNotFoundApiToModuleList(const ImportThunk * apiNotFound) |
| 654 | { |
nothing calls this directly
no outgoing calls
no test coverage detected