// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API VOID VideoPortWritePortBufferUshort(
PUSHORT Port,
[in] PUSHORT Buffer,
ULONG Count
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortWritePortBufferUshort function writes a number of USHORT values to a mapped I/O port.
PortPointer to the port. The given Port must be in a mapped I/O-space range returned by VideoPortGetDeviceBase.
Buffer [in]Pointer to a buffer containing the USHORT values to be written.
CountSpecifies the number of USHORT values to be transferred to the adapter.
None
A miniport driver's HwVidInterrupt or HwVidSynchronizeExecutionCallback function can call VideoPortWritePortBufferUshort.
Callers of VideoPortWritePortBufferUshort can be running at any IRQL, provided that the memory pointed to by the Buffer parameter is resident and that pointed to by the Port parameter is resident, mapped device memory.