// video.h
PVIDEO_READ_DATA_LINE PvideoReadDataLine;
BOOLEAN PvideoReadDataLine(
PVOID HwDeviceExtension
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
ReadDataLine reads a single data bit from the I2C serial data line.
HwDeviceExtensionPointer to the miniport driver's per-adapter storage area. For more information, see Device Extensions.
ReadDataLine returns 1 if the serial data line is high and 0 if the serial data line is low.
ReadDataLine should be made pageable.