UdecxUsbEndpointSetWdfIoQueue 函数 (udecxusbendpoint.h)

使用 UDE 终结点设置框架队列对象。

语法

void UdecxUsbEndpointSetWdfIoQueue(
  [in] UDECXUSBENDPOINT UdecxUsbEndpoint,
  [in] WDFQUEUE         WdfQueue
);

参数

[in] UdecxUsbEndpoint

UDE 终结点对象的句柄。 客户端驱动程序在上一次调用 UdecxUsbEndpointCreate 时检索了此指针。

[in] WdfQueue

框架队列对象的句柄,该对象将处理发送到终结点的请求。 客户端驱动程序在对 WdfIoQueueCreate 的上一次调用中检索了此指针。

返回值

要求

要求
最低受支持的客户端 Windows 10
最低受支持的服务器 Windows Server 2016
目标平台 Windows
最低 KMDF 版本 1.15
标头 udecxusbendpoint.h (包括 Udecx.h)
Library Udecxstub.lib
IRQL PASSIVE_LEVEL

另请参阅

体系结构:USB 设备模拟 (UDE)

创建 I/O 队列

编写 UDE 客户端驱动程序