// ntifs.h
typedef struct _VETO_BINDING_ECP_CONTEXT {
BOOLEAN ShouldVetoBinding;
} VETO_BINDING_ECP_CONTEXT, *PVETO_BINDING_ECP_CONTEXT;
View the official Windows Driver Kit DDI referenceNo description available.
The VETO_BINDING_ECP_CONTEXT structure is the ECP context structure associated with GUID_ECP_TYPE_VETO_BINDING for vetoing a bind link.
ShouldVetoBindingWhen set true, the bind link is vetoed. When set false, the bind link isn't vetoed.
A filter sitting below BindFlt can veto a binding on the system's boot partition only, not on any other partition.
For more information, see Vetoing a bind link.