Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
The VideoPortReadRegisterBufferUshort function reads a number of USHORT values from a mapped device memory range and writes them into a buffer.
Syntax
VIDEOPORT_DEPRECATED VIDEOPORT_API VOID VideoPortReadRegisterBufferUshort(
PUSHORT Register,
[out] PUSHORT Buffer,
ULONG Count
);
Parameters
Register
Pointer to the register. The given Register must be in a mapped memory-space range returned by VideoPortGetDeviceBase.
[out] Buffer
Pointer to a buffer into which the USHORT values are written.
Count
Specifies the number of USHORT values to be written to the buffer.
Return value
None
Remarks
The buffer must be large enough to contain at least the specified number of USHORT values.
A miniport driver's HwVidInterrupt or HwVidSynchronizeExecutionCallback function can call VideoPortReadRegisterBufferUshort.
Callers of VideoPortReadRegisterBufferUshort can be running at any IRQL, provided that the memory pointed to by the Buffer parameter is resident and that pointed to by the Register parameter is resident, mapped device memory.
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Available in Windows 2000 and later versions of the Windows operating systems. |
| Target Platform | Desktop |
| Header | video.h (include Video.h) |
| Library | Videoprt.lib |
| DLL | Videoprt.sys |
| IRQL | See Remarks section. |