// wdfresource.h
VOID WdfIoResourceRequirementsListSetInterfaceType(
[in] WDFIORESREQLIST RequirementsList,
[in] INTERFACE_TYPE InterfaceType
);
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF only]
The WdfIoResourceRequirementsListSetInterfaceType method assigns a bus type to a resource requirements list.
RequirementsList [in]A handle to a framework resource-requirements-list object that represents a device's resource requirements list.
InterfaceType [in]An INTERFACE_TYPE-typed value that identifies the type of bus that the device is connected to.
A bug check occurs if the driver supplies an invalid object handle.
Your driver must provide a bus type if your device does not support Plug and Play (PnP).
For more information about resource requirements lists, see Hardware Resources for Framework-Based Drivers.
The following code example shows how an EvtDeviceResourceRequirementsQuery callback function for a nonPnP device calls WdfIoResourceRequirementsListSetInterfaceType to assign a bus type to a device.
NTSTATUS
Example_EvtDeviceResourceRequirementsQuery(
IN WDFDEVICE Device,
IN WDFIORESREQLIST Requirements
)
{
...
WdfIoResourceRequirementsListSetInterfaceType(
Requirements,
Isa
);
...
}