NdisRawReadPortBufferUlong - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

void NdisRawReadPortBufferUlong(
  [in]  Port,
  [out] Buffer,
  [in]  Length
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisrawreadportbufferulong)

NdisRawReadPortBufferUlong macro

Description

NdisRawReadPortBufferUlong reads a specified number of ULONGs into a caller-supplied buffer.

Parameters

Port [in]

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

Buffer [out]

Pointer to a caller-allocated buffer, in resident memory, into which the ULONGs will be transferred from the NIC. The caller must allocate a buffer at least ( sizeof(ULONG) * Length ).

Length [in]

Specifies how many ULONGs to transfer from the NIC.

Remarks

NdisRawReadPortBufferUlong reads each ULONG value, one at a time, from the given I/O port into the given buffer.

See also

MiniportInitializeEx

NdisMRegisterIoPortRange

NdisRawReadPortBufferUchar

NdisRawReadPortBufferUshort

NdisRawReadPortUlong

NdisRawWritePortBufferUlong