NdisWritePortBufferUlong

VOID
    NdisWritePortBufferUlong(
        IN NDIS_HANDLE NdisAdapterHandle,
        IN ULONG Port,
        IN PULONG Buffer,
        IN ULONG Length
        );

NdisWritePortBufferUlong is called by the NIC driver to write ULONGs from a buffer to its NIC.

Parameters

NdisAdapterHandle
Specifies the handle that the NDIS interface library associates with the network interface card.
Port
Specifies the I/O port.
Buffer
Points to the caller-supplied buffer from which this function writes the ULONG values to Port.
Length
Specifies the number of ULONGs to write to Port.

Comments

NdisWritePortBufferUlong sequentially writes each ULONG to the port. It determines how the host accesses the I/O port and processes the write request accordingly.

Callers of NdisWritePortBufferUlong can be running at any IRQL.

See Also

NdisRawWritePortBufferUlong, NdisReadPortBufferUlong, NdisWritePortUlong