DOCFIX: NdisMPciAssignResources Parameter List Is Incorrect

Last reviewed: July 23, 1996
Article ID: Q132247
The information in this article applies to:
  • Microsoft Win32 Device Development 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 reference words: 3.51
KBCategory: kbprg kbdocerr
KBSubcategory: PCI NDIS MINIPORTS ntddkndis


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 23, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.