Implement part of the functionality of NdisMSetAttributesEx(). (So ROS doesn't complain while loading VMWare net driver -- though it still doesn't load)

svn path=/trunk/; revision=4582
This commit is contained in:
Aleksey Bragin 2003-04-25 21:22:48 +00:00
parent b119bad3fa
commit 2e6c5e5a92

View file

@ -1275,7 +1275,16 @@ NdisMSetAttributesEx(
* AdapterType = Specifies the I/O bus interface of the caller's NIC
*/
{
UNIMPLEMENTED
// Currently just like NdisMSetAttributesEx
// TODO: Take CheckForHandTimeInSeconds into account!
PLOGICAL_ADAPTER Adapter = GET_LOGICAL_ADAPTER(MiniportAdapterHandle);
NDIS_DbgPrint(MAX_TRACE, ("Called.\n"));
Adapter->NdisMiniportBlock.MiniportAdapterContext = MiniportAdapterContext;
Adapter->Attributes = AttributeFlags & NDIS_ATTRIBUTE_BUS_MASTER;
Adapter->NdisMiniportBlock.AdapterType = AdapterType;
Adapter->AttributesSet = TRUE;
}