EVT_UCX_ENDPOINT_ABORT コールバック関数 (ucxendpoint.h)
UCX がエンドポイントに関連付けられているキューを中止するためにを呼び出すクライアント ドライバーの実装。
構文
EVT_UCX_ENDPOINT_ABORT EvtUcxEndpointAbort;
void EvtUcxEndpointAbort(
[in] UCXCONTROLLER UcxController,
[in] UCXENDPOINT UcxEndpoint
)
{...}
パラメーター
[in] UcxController
UcxControllerCreate メソッドの以前の呼び出しでクライアント ドライバーが受信した UCX コントローラーへのハンドル。
[in] UcxEndpoint
UCXENDPOINT オブジェクトへのハンドル。
戻り値
なし
解説
クライアント ドライバーは 、UcxEndpointCreate メソッドを呼び出すことによって、USB ホスト コントローラー拡張機能 (UCX) にこのコールバック関数を登録します。
この関数は、エンドポイントに関連付けられているすべての要求を完了します。通常は WdfIoQueueStopAndPurge を呼び出します。
例
VOID
Endpoint_UcxEvtEndpointAbort(
UCXCONTROLLER UcxController,
UCXENDPOINT UcxEndpoint
)
{
WdfIoQueueStopAndPurge(endpointContext->WdfQueue,
Endpoint_WdfEvtAbortComplete,
UcxEndpoint);
}
要件
要件 | 値 |
---|---|
対象プラットフォーム | Windows |
最小 KMDF バージョン | 1.0 |
最小 UMDF バージョン | 2.0 |
Header | ucxendpoint.h (Ucxclass.h、Ucxendpoint.h を含む) |
IRQL | DISPATCH_LEVEL |