// ucxcontroller.h
typedef struct _UCX_CONTROLLER_RESET_COMPLETE_INFO {
ULONG Size;
UCX_CONTROLLER_STATE UcxControllerState;
BOOLEAN UcxCoordinated;
} UCX_CONTROLLER_RESET_COMPLETE_INFO, *PUCX_CONTROLLER_RESET_COMPLETE_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
Contains information about the operation to reset the controller. This is used by the client driver in its EVT_UCX_CONTROLLER_RESET callback function.
SizeThe size in bytes of this structure.
UcxControllerStateThe UCX controller state after reset.
UcxCoordinatedIndicates if the reset was coordinated with UCX (TRUE) or not (FALSE).
This structure is populated by a call to UcxControllerResetComplete.