// video.h
PI2C_WRITE Pi2cWrite;
BOOLEAN Pi2cWrite(
[in] IN PVOID HwDeviceExtension,
[in] IN PI2C_CALLBACKS I2CCallbacks,
[in] IN PUCHAR Buffer,
[in] IN ULONG Length
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The I2CWrite function writes data over the I2C channel.
HwDeviceExtension [in]Pointer to the miniport driver's per-adapter device extension.
I2CCallbacks [in]Pointer to an I2C_CALLBACKS structure, containing pointers to miniport driver-defined functions that read and write data and clock lines.
Buffer [in]Pointer to the data to be written.
Length [in]Specifies the number of bytes to be written.
I2CWrite returns TRUE if the data was successfully written, and FALSE otherwise.
The video port implements this function, which can be accessed through a pointer in the VIDEO_PORT_I2C_INTERFACE structure.