#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
// begin_private
typedef enum _PS_PROTECTED_TYPE
{
PsProtectedTypeNone,
PsProtectedTypeProtectedLight,
PsProtectedTypeProtected,
PsProtectedTypeMax
} PS_PROTECTED_TYPE;
View code on GitHub
The enumeration defines the type of protection applied to the process.
PsProtectedTypeNone
(0) - the process is not running as protected.PsProtectedTypeProtectedLight
(1) - the process is running as light-protected (PPL).PsProtectedTypeProtected
(2) - the process is running as fully-protected.