UdecxUsbEndpointSetWdfIoQueue - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// udecxusbendpoint.h

VOID UdecxUsbEndpointSetWdfIoQueue(
  [in] UDECXUSBENDPOINT UdecxUsbEndpoint,
  [in] WDFQUEUE         WdfQueue
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-udecxusbendpoint-udecxusbendpointsetwdfioqueue)

UdecxUsbEndpointSetWdfIoQueue function

Description

Sets a framework queue object with a UDE endpoint.

Parameters

UdecxUsbEndpoint [in]

A handle to a UDE endpoint object. The client driver retrieved this pointer in the previous call to UdecxUsbEndpointCreate.

WdfQueue [in]

A handle to a framework queue object that will handle requests sent to the endpoint. The client driver retrieved this pointer in the previous call to WdfIoQueueCreate.

See also

Architecture: USB Device Emulation (UDE)

Creating I/O Queues

Write a UDE client driver