VideoPortWritePortBufferUlong - NtDoc

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

VIDEOPORT_DEPRECATED VIDEOPORT_API VOID VideoPortWritePortBufferUlong(
       PULONG Port,
  [in] PULONG Buffer,
       ULONG  Count
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-video-videoportwriteportbufferulong)

VideoPortWritePortBufferUlong function

Description

The VideoPortWritePortBufferUlong function writes a number of ULONG values to a mapped I/O port.

Parameters

Port

Pointer 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 ULONG values to be written.

Count

Specifies the number of ULONG values to be transferred to the adapter.

Return value

None

Remarks

A miniport driver's HwVidInterrupt or HwVidSynchronizeExecutionCallback function can call VideoPortWritePortBufferUlong.

Callers of VideoPortWritePortBufferUlong 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.

See also

VideoPortGetDeviceBase