DOCFIX: NdisMPciAssignResources Parameter List Is Incorrect

ID: Q132247


The information in this article applies to:


SUMMARY

The following describes a DDK online documentation error for the NDIS 3.0 interface library. The DDK documentation lists NdisMPciAssignResources as:


   VOID NdisMPciAssignResources(MiniportAdapterHandle, AssignedResources)
                                                               IN
   NDIS_HANDLE MiniportAdapterHandle,
                                                               OUT
   PNDIS_RESOURCE_LIST * AssignedResources 

It should be changed to reflect the proper argument count of the NDIS function NdisMPciAssignResources(). The correct prototype for this function is:

   VOID NdisMPciAssignResources(MiniportAdapterHandle, SlotNumber,
      AssignedResources)
                                                               IN
   NDIS_HANDLE MiniportAdapterHandle,
                                                               IN ULONG
   SlotNumber,
                                                               OUT
   PNDIS_RESOURCE_LIST * AssignedResources 

The parameter list documentation has been corrected in the Microsoft Windows NT DDK version 3.51 documentation.

Additional query words: 3.51


Keywords          : MINIPORTS NDIS ntddkndis PCI 
Version           : 3.51
Platform          : NT WINDOWS 
Issue type        : 

Last Reviewed: March 3, 1999