SYSTEM_CODEINTEGRITY_CERTIFICATE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTEXAPI_H

/**
 * The SYSTEM_CODEINTEGRITY_CERTIFICATE_INFORMATION structure contains information to validate the integrity of an image.
 *
 * \note The return status of NtQuerySystemInformation indicates the result of the code integrity validation as determined by the type specified.
 */
typedef struct _SYSTEM_CODEINTEGRITY_CERTIFICATE_INFORMATION
{
    HANDLE ImageFile;   // in: Handle to a file or image to validate.
    ULONG Type;         // in: The type of code integrity policy. // REDSTONE4
} SYSTEM_CODEINTEGRITY_CERTIFICATE_INFORMATION, *PSYSTEM_CODEINTEGRITY_CERTIFICATE_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.