#ifndef _NTREGAPI_H
// private
/**
* The KEY_TRUST_INFORMATION structure contains information about the trust status of a key.
*
* The flags include:
* - TrustedKey: Indicates whether the key is trusted. When set, this flag signifies that the key is considered
* to be secure and reliable.
* - Reserved: Reserved bits.
*/
typedef struct _KEY_TRUST_INFORMATION
{
ULONG TrustedKey : 1;
ULONG Reserved : 31;
} KEY_TRUST_INFORMATION, *PKEY_TRUST_INFORMATION;
View code on GitHub
No description available.