DOCFIX: NdisMPciAssignResources Parameter List Is Incorrect

ID: Q132247


The information in this article applies to:
  • Microsoft Win32 Device Driver Kit (DDK) for Windows NT, version 3.51


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: December 19, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.