#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The MANAGE_HOT_PATCH_LOAD_PATCH structure describes parameters for loading a hot patch.
*/
typedef struct _MANAGE_HOT_PATCH_LOAD_PATCH
{
ULONG Version; // Structure version. Must be MANAGE_HOT_PATCH_LOAD_PATCH_VERSION.
UNICODE_STRING PatchPath; // The path to the hot patch file.
union
{
SID Sid; // The SID of the user for whom the patch is being loaded.
UCHAR Buffer[SECURITY_MAX_SID_SIZE]; // Buffer for the SID.
} UserSid;
HOT_PATCH_IMAGE_INFO BaseInfo; // Identifying information about the base image to patch.
} MANAGE_HOT_PATCH_LOAD_PATCH, *PMANAGE_HOT_PATCH_LOAD_PATCH;
View code on GitHubNo description available.