| 238 | } |
| 239 | |
| 240 | bool PluginLoader::isValidDllFile( const WCHAR * fullpath ) |
| 241 | { |
| 242 | PeParser peFile(fullpath, false); |
| 243 | |
| 244 | return (peFile.isTargetFileSamePeFormat() && peFile.hasExportDirectory()); |
| 245 | } |
| 246 | |
| 247 | bool PluginLoader::isValidImprecPlugin(const WCHAR * fullpath) |
| 248 | { |
nothing calls this directly
no test coverage detected