// wdm.h
typedef struct _DEVICE_FAULT_CONFIGURATION {
PIOMMU_DEVICE_FAULT_HANDLER FaultHandler;
PVOID FaultContext;
} DEVICE_FAULT_CONFIGURATION, *PDEVICE_FAULT_CONFIGURATION;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used in setting the device fault reporting state through the IOMMU_SET_DEVICE_FAULT_REPORTING callback function.
FaultHandlerA pointer to the driver-supplied fault handler routine, executed at PASSIVE_LEVEL. See IOMMU_DEVICE_FAULT_HANDLER.
FaultContextA pointer to the opaque driver-supplied fault context.