| 239 | } |
| 240 | |
| 241 | bool Process::IsWow64Process() const { |
| 242 | PROCESS_EXTENDED_BASIC_INFORMATION info; |
| 243 | if (!GetExtendedInfo(GetHandle(), &info)) |
| 244 | return false; |
| 245 | |
| 246 | return info.IsWow64Process ? true : false; |
| 247 | } |
| 248 | |
| 249 | bool Process::IsManaged() const { |
| 250 | wil::unique_handle hProcess; |
no test coverage detected