| 217 | } |
| 218 | |
| 219 | bool Process::IsProtected() const { |
| 220 | PROCESS_EXTENDED_BASIC_INFORMATION info; |
| 221 | if (!GetExtendedInfo(GetHandle(), &info)) |
| 222 | return false; |
| 223 | |
| 224 | return info.IsProtectedProcess ? true : false; |
| 225 | } |
| 226 | |
| 227 | bool Process::IsSecure() const { |
| 228 | PROCESS_EXTENDED_BASIC_INFORMATION info; |
no test coverage detected