#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;
View code on GitHubNo description available.