#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;
View code on GitHubNo description available.