| 282 | } |
| 283 | |
| 284 | int EmmyTool::ArchFile() { |
| 285 | ExeInfo info; |
| 286 | if (GetExeInfo(_cmd.GetArg(2).c_str(), info)) { |
| 287 | printf("%d", info.i386); |
| 288 | return info.i386; |
| 289 | } |
| 290 | return -1;//file not exist |
| 291 | } |
| 292 | |
| 293 | int EmmyTool::ArchPid() { |
| 294 | const DWORD processId = std::stoi(_cmd.GetArg(2)); |
no test coverage detected