EVT_UCX_ENDPOINT_START fonction de rappel (ucxendpoint.h)
Implémentation du pilote client qui appelle UCX pour démarrer la file d’attente associée au point de terminaison.
EVT_UCX_ENDPOINT_START EvtUcxEndpointStart;
void EvtUcxEndpointStart(
[in] UCXCONTROLLER UcxController,
[in] UCXENDPOINT UcxEndpoint
)
{...}
[in] UcxController
Handle du contrôleur UCX reçu par le pilote client lors d’un appel précédent à la méthode UcxControllerCreate.
[in] UcxEndpoint
Handle vers un objet UCXENDPOINT qui représente le point de terminaison.
Aucun
Le pilote client UCX inscrit cette fonction de rappel auprès de l’extension UCX (Host Controller Extension) USB en appelant la méthode UcxEndpointCreate.
VOID
Endpoint_EvtUcxEndpointStart(
UCXCONTROLLER UcxController,
UCXENDPOINT UcxEndpoint
)
{
UNREFERENCED_PARAMETER(UcxController);
UNREFERENCED_PARAMETER(UcxEndpoint);
DbgTrace(TL_INFO, Endpoint, "Endpoint_EvtUcxEndpointStart");
}
Exigence | Valeur |
---|---|
plateforme cible | Windows |
version minimale de KMDF | 1.0 |
version minimale de UMDF | 2.0 |
d’en-tête | ucxendpoint.h (include Ucxclass.h, Ucxendpoint.h) |
IRQL | DISPATCH_LEVEL |