NdisRawReadPortUshort macro (ndis.h)

NdisRawReadPortUshort reads a USHORT value from a given I/O port on the NIC.

Syntax

void NdisRawReadPortUshort(
  [in]   Port,
  [out]  Data
);

Parameters

[in] Port

Specifies the I/O port. This address falls in a range that was mapped during initialization with NdisMRegisterIoPortRange.

[out] Data

Pointer to a caller-supplied variable in which this function returns a USHORT value read in from the port.

Return value

None

Remarks

NdisRawReadPortUshort runs fast because it need not map a bus-relative I/O port address onto a host-dependent logical port address at every call.

Requirements

Requirement Value
Minimum supported client Supported for NDIS 6.0 and NDIS 5.1 drivers (see NdisRawReadPortUshort (NDIS 5.1)) in Windows Vista. Supported for NDIS 5.1 drivers (see NdisRawReadPortUshort (NDIS 5.1)) in Windows XP.
Target Platform Universal
Header ndis.h (include Ndis.h)
IRQL Any level

See also

MiniportInitializeEx

NdisMRegisterIoPortRange

NdisRawReadPortBufferUshort

NdisRawReadPortUchar

NdisRawReadPortUlong

NdisRawWritePortUshort