RTL_SCP_CFG_REGION_BOUNDS - NtDoc

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

/**
 * The RTL_SCP_CFG_REGION_BOUNDS structure describes inclusive start/end
 * addresses of an SCP/CFG-protected region.
 */
typedef struct _RTL_SCP_CFG_REGION_BOUNDS
{
    PVOID StartAddress; // Inclusive start address of the region.
    PVOID EndAddress;   // Inclusive end address of the region.
} RTL_SCP_CFG_REGION_BOUNDS, *PRTL_SCP_CFG_REGION_BOUNDS;

#endif

View code on GitHub

NtDoc

No description available.