// ndis.h
void NdisRawReadPortUchar(
[in] Port,
[out] Data
);
View the official Windows Driver Kit DDI referenceNo description available.
NdisRawReadPortUchar reads a byte from a given I/O port on the NIC.
Port [in]Specifies the I/O port. This address falls in a range that was mapped during initialization with NdisMRegisterIoPortRange.
Data [out]Pointer to a caller-supplied variable in which this function returns a byte read in from the port.
NdisRawReadPortUchar runs fast because it need not map a bus-relative I/O port address onto a host-dependent logical port address at every call.