| 610 | } |
| 611 | |
| 612 | bool ImportsHandling::addModuleToModuleList(const WCHAR * moduleName, DWORD_PTR firstThunk) |
| 613 | { |
| 614 | ImportModuleThunk module; |
| 615 | |
| 616 | module.firstThunk = firstThunk; |
| 617 | wcscpy_s(module.moduleName, moduleName); |
| 618 | |
| 619 | module.key = module.firstThunk; |
| 620 | moduleListNew[module.key] = module; |
| 621 | return true; |
| 622 | } |
| 623 | |
| 624 | bool ImportsHandling::isNewModule(const WCHAR * moduleName) |
| 625 | { |
nothing calls this directly
no outgoing calls
no test coverage detected