EVT_UCX_ENDPOINT_SET_CHARACTERISTIC callback function (ucxendpoint.h)

UCX invokes this callback function to set the priority on an endpoint.

Syntax

EVT_UCX_ENDPOINT_SET_CHARACTERISTIC EvtUcxEndpointSetCharacteristic;

void EvtUcxEndpointSetCharacteristic(
  [in] UCXENDPOINT UcxEndpoint,
  [in] PUCX_ENDPOINT_CHARACTERISTIC UcxEndpointCharacteristic
)
{...}

Parameters

[in] UcxEndpoint

A handle to a UCXENDPOINT object that represents the endpoint.

[in] UcxEndpointCharacteristic

A pointer to a UCX_ENDPOINT_CHARACTERISTIC structure that contains endpoint characteristics.

Return value

None

Remarks

The UCX client driver registers this callback function with the USB host controller extension (UCX) by calling the UcxEndpointCreate method.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1709
Minimum supported server Windows Server 2016
Target Platform Windows
Minimum KMDF version 1.0
Minimum UMDF version 2.0
Header ucxendpoint.h (include Ucxclass.h)
IRQL <=DISPATCH_LEVEL

See also