Obtain Configuration Information for the Adapter (Compact 2013)

3/26/2014

Your driver's MiniportInitializeEx function accepts the address of an NDIS_MINIPORT_INIT_PARAMETERS structure. This structure defines the initialization parameters for a miniport adapter.

An important member of this structure is the AllocatedResources member. AllocatedResources is a pointer to a CM_PARTIAL_RESOURCE_LIST structure that lists the hardware resources that the Plug and Play Manager assigns to the miniport adapter. You can use this structure to determine which hardware resources your NDIS driver can use for controlling the adapter. For more information about this list, see CM_PARTIAL_RESOURCE_LIST.

See Also

Concepts

Modify Adapter Initialization Functionality for NDIS 6.0