PROCESS_DEBUG_FLAGS - NtDoc

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

#endif
#endif

View code on GitHub

NtDoc

No description available.