UdecxUsbEndpointCreate - NtDoc

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

NTSTATUS UdecxUsbEndpointCreate(
                 PUDECXUSBENDPOINT_INIT *EndpointInit,
  [in, optional] PWDF_OBJECT_ATTRIBUTES Attributes,
  [out]          UDECXUSBENDPOINT       *UdecxUsbEndpoint
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

UdecxUsbEndpointCreate function

Description

Creates a UDE endpoint object.

Parameters

EndpointInit

A pointer to an UDECXUSBENDPOINT_INIT structure that the client driver retrieved in the previous call to UdecxUsbSimpleEndpointInitAllocate.

Attributes [in, optional]

A pointer to a caller-allocated WDF_OBJECT_ATTRIBUTES structure that specifies attributes for the USB device object.

UdecxUsbEndpoint [out]

A pointer to a variable that receives a handle to the new UDE endpoint object that represents the simple endpoint on the USB device.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

See also

Architecture: USB Device Emulation (UDE)

UdecxUsbSimpleEndpointInitAllocate

Write a UDE client driver