MEMORY_IMAGE_EXTENSION_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTMMAPI_H

/**
 * The MEMORY_IMAGE_EXTENSION_INFORMATION structure describes an optional image extension
 * containing additional metadata or features (for example, CFG/SCP related extensions).
 */
typedef struct _MEMORY_IMAGE_EXTENSION_INFORMATION
{
    MEMORY_IMAGE_EXTENSION_TYPE ExtensionType; // Type of the image extension (MEMORY_IMAGE_EXTENSION_TYPE).
    ULONG Flags;                               // Extension-specific flags.
    PVOID ExtensionImageBaseRva;               // Relative virtual address of the extension image base.
    SIZE_T ExtensionSize;                      // Size, in bytes, of the extension region.
} MEMORY_IMAGE_EXTENSION_INFORMATION, *PMEMORY_IMAGE_EXTENSION_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.