// ucxendpoint.h
EVT_UCX_ENDPOINT_START EvtUcxEndpointStart;
VOID EvtUcxEndpointStart(
[in] UCXCONTROLLER UcxController,
[in] UCXENDPOINT UcxEndpoint
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The client driver's implementation that UCX calls to start the queue associated with the endpoint.
UcxController [in]A handle to the UCX controller that the client driver received in a previous call to the UcxControllerCreate method.
UcxEndpoint [in]A handle to a UCXENDPOINT object that represents the endpoint.
The UCX client driver registers this callback function with the USB host controller extension (UCX) by calling the UcxEndpointCreate method.
VOID
Endpoint_EvtUcxEndpointStart(
UCXCONTROLLER UcxController,
UCXENDPOINT UcxEndpoint
)
{
UNREFERENCED_PARAMETER(UcxController);
UNREFERENCED_PARAMETER(UcxEndpoint);
DbgTrace(TL_INFO, Endpoint, "Endpoint_EvtUcxEndpointStart");
}