PROCESS_FAULT_INFORMATION - 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_FAULT_INFORMATION structure contains information about process faults.
 */
typedef struct _PROCESS_FAULT_INFORMATION
{
    ULONG FaultFlags;       // Flags that provide additional information about the fault.
    ULONG AdditionalInfo;   // Additional information about the fault.
} PROCESS_FAULT_INFORMATION, *PPROCESS_FAULT_INFORMATION;

#endif
#endif

View code on GitHub

No description available.