#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The PROCESS_SECURITY_DOMAIN_INFORMATION structure contains the security domain identifier for a process.
*
* This structure is used to query or set the security domain of a process, which can be used for isolation
* and security boundary purposes in Windows. The SecurityDomain field is a 64-bit value that uniquely
* identifies the security domain associated with the process.
*/
typedef struct _PROCESS_SECURITY_DOMAIN_INFORMATION
{
ULONGLONG SecurityDomain; // The unique identifier of the process's security domain.
} PROCESS_SECURITY_DOMAIN_INFORMATION, *PPROCESS_SECURITY_DOMAIN_INFORMATION;
View code on GitHub
No description available.