| 1214 | } |
| 1215 | |
| 1216 | bool ApiReader::isWinSxSModule( ModuleInfo * module ) |
| 1217 | { |
| 1218 | if (wcsstr(module->fullPath, L"\\WinSxS\\")) |
| 1219 | { |
| 1220 | return true; |
| 1221 | } |
| 1222 | else if (wcsstr(module->fullPath, L"\\winsxs\\")) |
| 1223 | { |
| 1224 | return true; |
| 1225 | } |
| 1226 | else |
| 1227 | { |
| 1228 | return false; |
| 1229 | } |
| 1230 | } |
| 1231 | |
| 1232 | bool ApiReader::isInvalidMemoryForIat( DWORD_PTR address ) |
| 1233 | { |
nothing calls this directly
no outgoing calls
no test coverage detected