#ifndef _NTMMAPI_H
// rev
/**
* The MEMORY_BAD_INFORMATION structure reports a range of memory that has been marked bad or otherwise problematic.
*/
typedef struct _MEMORY_BAD_INFORMATION
{
PVOID BadAddress; // Starting address of the bad memory range.
ULONG_PTR Length; // Length in bytes of the bad range.
ULONG Flags; // Flags describing the nature of the bad memory.
ULONG Reserved;
} MEMORY_BAD_INFORMATION, *PMEMORY_BAD_INFORMATION;
View code on GitHubNo description available.