// hidport.h
// CTL_CODE(0x000b, 0x015, METHOD_NEITHER, FILE_ANY_ACCESS)
#define IOCTL_UMDF_HID_GET_FEATURE 0x000B0057
View the official Windows Driver Kit DDI referenceNo description available.
The IOCTL_UMDF_HID_GET_FEATURE control code obtains a feature report from a HIDClass device.
A UMDF-based driver calls IWDFRequest::GetInputMemory to retrieve a requester-allocated input buffer that contains the report ID of the collection.
The size of the buffer obtained by calling IWDFRequest::GetInputMemory.
A UMDF-based driver calls IWDFRequest::GetOutputMemory to retrieve a requester-allocated output buffer. The driver uses the buffer to return a feature report.
The size of the buffer that is retrieved by calling IWDFIoRequest::GetOutputMemory.
HID minidrivers that carry out the I/O to the device must also: