NdisMDeregisterIoPortRange (Windows Embedded CE 6.0)

1/6/2010

This function releases a mapping that was set up with the NdisMRegisterIoPortRange function during driver initialization.

Syntax

VOID NdisMDeregisterIoPortRange(
  NDIS_HANDLE MiniportAdapterHandle,
  UINT InitialPort,
  UINT NumberOfPorts,
  PVOID PortOffset
);

Parameters

  • MiniportAdapterHandle
    [in] Handle input to the MiniportInitialize function.
  • InitialPort
    [in] Specifies the bus-relative address of the first port in the range of ports.
  • NumberOfPorts
    [in] Specifies the number of ports in the range.
  • PortOffset
    [in] Specifies the mapped base port address returned by the NdisMRegisterIoPortRange function.

Return Value

None.

Remarks

The miniport must pass the same InitialPort and NumberOfPorts parameters to this function that were passed when the MiniportInitialize function called the NdisMRegisterIoPortRange function to get the mapped PortOffset value. That is, a miniport cannot call this function to release a subrange of a mapped port range.

This function can be called from the MiniportInitialize or the MiniportHalt function only if MiniportInitialize previously made a successful call to the NdisMRegisterIoPortRange function.

This function also releases the driver's claim on the I/O port range in the registry.

After it calls NdisMRegisterIoPortRange, the miniport can no longer access the NIC's port range with calls to the NdisRawXXXPortXXX functions.

Requirements

Header ndis.h
Library ndis.dll
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NDIS Library Functions
NdisMRegisterIoPortRange