// ursdevice.h
typedef struct _URS_CONFIG {
ULONG Size;
URS_HOST_INTERFACE_TYPE HostInterfaceType;
PFN_URS_DEVICE_FILTER_RESOURCE_REQUIREMENTS EvtUrsFilterRemoveResourceRequirements;
PFN_URS_SET_ROLE EvtUrsSetRole;
} URS_CONFIG, *PURS_CONFIG;
View the official Windows Driver Kit DDI referenceNo description available.
Contains pointers to event callback functions implemented by the URS client driver for a USB dual-role controller. Initialize this structure by calling URS_CONFIG_INIT.
SizeThe size of this structure.
HostInterfaceTypeA URS_HOST_INTERFACE_TYPE type value that indicates the type of USB host controller: EHCI, xHCI, or other.
EvtUrsFilterRemoveResourceRequirementsA pointer to an EVT_URS_DEVICE_FILTER_RESOURCE_REQUIREMENTS callback function.
EvtUrsSetRoleA pointer to an EVT_URS_SET_ROLE callback function.