MANAGE_HOT_PATCH_CREATE_PATCH_SECTION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif
#endif

View code on GitHub

NtDoc

No description available.