#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The MANAGE_HOT_PATCH_QUERY_ACTIVE_PATCHES structure is used to query active hot patches for a process.
*/
typedef struct _MANAGE_HOT_PATCH_QUERY_ACTIVE_PATCHES
{
ULONG Version; // Structure version. Must be MANAGE_HOT_PATCH_QUERY_ACTIVE_PATCHES_VERSION.
HANDLE ProcessHandle; // Handle to the process being queried.
ULONG PatchCount; // The number of active patches.
PUNICODE_STRING PatchPathStrings; // Pointer to an array of patch path strings.
PHOT_PATCH_IMAGE_INFO BaseInfos; // Pointer to an array of patch image info structures.
PULONG PatchSequenceNumbers; // Pointer to an array of patch sequence numbers.
} MANAGE_HOT_PATCH_QUERY_ACTIVE_PATCHES, *PMANAGE_HOT_PATCH_QUERY_ACTIVE_PATCHES;
View code on GitHubNo description available.