VOID
NdisReadPortUchar(
IN NDIS_HANDLE NdisAdapterHandle,
IN ULONG Port,
OUT PUCHAR Data
);
NdisReadPortUchar is called by the NIC driver to read a UCHAR from its NIC’s I/O port.
Parameters
NdisAdapterHandle
Specifies the handle that the NDIS interface library associates with the network interface card.
Port
Specifies the I/O port.
Data
Points to the caller-supplied variable in which this function returns the byte read from Port.
Comments
Callers of NdisReadPortUchar can be running at any IRQL.
See Also
NdisRawReadPortUchar, NdisReadPortBufferUchar, NdisWritePortUchar