MEMORY_BAD_INFORMATION - NtDoc

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

#endif

View code on GitHub

NtDoc

No description available.