EVT_UCX_ENDPOINT_START fonction de rappel (ucxendpoint.h)
Implémentation du pilote client qu’UCX appelle pour démarrer la file d’attente associée au point de terminaison.
Syntaxe
EVT_UCX_ENDPOINT_START EvtUcxEndpointStart;
void EvtUcxEndpointStart(
[in] UCXCONTROLLER UcxController,
[in] UCXENDPOINT UcxEndpoint
)
{...}
Paramètres
[in] UcxController
Handle du contrôleur UCX que le pilote client a reçu lors d’un appel précédent à la méthode UcxControllerCreate .
[in] UcxEndpoint
Handle d’un objet UCXENDPOINT qui représente le point de terminaison.
Valeur de retour
None
Remarques
Le pilote client UCX inscrit cette fonction de rappel auprès de l’extension du contrôleur hôte USB (UCX) en appelant la méthode UcxEndpointCreate .
Exemples
VOID
Endpoint_EvtUcxEndpointStart(
UCXCONTROLLER UcxController,
UCXENDPOINT UcxEndpoint
)
{
UNREFERENCED_PARAMETER(UcxController);
UNREFERENCED_PARAMETER(UcxEndpoint);
DbgTrace(TL_INFO, Endpoint, "Endpoint_EvtUcxEndpointStart");
}
Configuration requise
Condition requise | Valeur |
---|---|
Plateforme cible | Windows |
Version KMDF minimale | 1.0 |
Version UMDF minimale | 2.0 |
En-tête | ucxendpoint.h (inclure Ucxclass.h, Ucxendpoint.h) |
IRQL | DISPATCH_LEVEL |