#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The MANAGE_HOT_PATCH_CREATE_PATCH_SECTION structure describes parameters for creating a hot patch section.
*/
typedef struct _MANAGE_HOT_PATCH_CREATE_PATCH_SECTION
{
ULONG Version; // Structure version. Must be MANAGE_HOT_PATCH_CREATE_PATCH_SECTION_VERSION.
ULONG Flags; // Creation flags.
ACCESS_MASK DesiredAccess; // Desired access mask for the section.
ULONG PageProtection; // Page protection flags.
ULONG AllocationAttributes; // Allocation attributes.
PVOID BaseImageAddress; // Base address of the image for the patch section.
HANDLE SectionHandle; // Handle to the created section.
} MANAGE_HOT_PATCH_CREATE_PATCH_SECTION, *PMANAGE_HOT_PATCH_CREATE_PATCH_SECTION;
View code on GitHubNo description available.