#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The PROCESS_DEBUG_FLAGS structure is used to query or set process debug inheritance behavior.
*/
typedef struct _PROCESS_DEBUG_FLAGS
{
union
{
ULONG Flags;
struct
{
ULONG NoDebugInherit : 1;
ULONG Spare : 31;
};
};
} PROCESS_DEBUG_FLAGS, *PPROCESS_DEBUG_FLAGS;
View code on GitHubNo description available.