// iddcx.h
struct IDARG_IN_I2C_TRANSMIT {
UINT SevenBitI2CAddress;
UINT DataSizeInBytes;
PVOID pData;
};
View the official Windows Driver Kit DDI referenceNo description available.
Gives information about the I2C data being transmitted by the OS.
SevenBitI2CAddress[in] The address of the I2C device to which data will be transmitted
DataSizeInBytes[in] The size, in bytes, of the buffer pointed to by pData. This parameter must be between 1 and 64, inclusively.
pData[in] A pointer to a buffer that holds the data to be transmitted.