// extsfns.h
typedef enum _DEBUG_FAILURE_TYPE {
DEBUG_FLR_UNKNOWN,
DEBUG_FLR_KERNEL,
DEBUG_FLR_USER
} DEBUG_FAILURE_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The values in the DEBUG_FAILURE_TYPE enumeration indicate the type of a failure.
DEBUG_FLR_UNKNOWNThe failure type is not known.
DEBUG_FLR_KERNELThe failing code was running in kernel mode.
DEBUG_FLR_USERThe failing code was running in user mode.
Writing an Analysis Extension Plug-in to Extend !analyze