| 225 | } |
| 226 | |
| 227 | bool Process::IsSecure() const { |
| 228 | PROCESS_EXTENDED_BASIC_INFORMATION info; |
| 229 | if(!GetExtendedInfo(GetHandle(),&info)) |
| 230 | return false; |
| 231 | |
| 232 | return info.IsSecureProcess ? true : false; |
| 233 | } |
| 234 | |
| 235 | bool Process::IsInJob(HANDLE hJob) const { |
| 236 | BOOL injob = FALSE; |
no test coverage detected