Files
nearby/internal/platform/implementation/windows/generated/winrt/impl/Windows.Devices.I2c.Provider.2.h
T
jfcarroll 28da839987 Latest update for winrt
PiperOrigin-RevId: 452591835
2022-06-02 12:05:19 -07:00

29 lines
1.2 KiB
C++

// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.220531.1
#pragma once
#ifndef WINRT_Windows_Devices_I2c_Provider_2_H
#define WINRT_Windows_Devices_I2c_Provider_2_H
#include "winrt/impl/Windows.Devices.I2c.Provider.1.h"
WINRT_EXPORT namespace winrt::Windows::Devices::I2c::Provider
{
struct ProviderI2cTransferResult
{
winrt::Windows::Devices::I2c::Provider::ProviderI2cTransferStatus Status;
uint32_t BytesTransferred;
};
inline bool operator==(ProviderI2cTransferResult const& left, ProviderI2cTransferResult const& right) noexcept
{
return left.Status == right.Status && left.BytesTransferred == right.BytesTransferred;
}
inline bool operator!=(ProviderI2cTransferResult const& left, ProviderI2cTransferResult const& right) noexcept
{
return !(left == right);
}
struct __declspec(empty_bases) ProviderI2cConnectionSettings : winrt::Windows::Devices::I2c::Provider::IProviderI2cConnectionSettings
{
ProviderI2cConnectionSettings(std::nullptr_t) noexcept {}
ProviderI2cConnectionSettings(void* ptr, take_ownership_from_abi_t) noexcept : winrt::Windows::Devices::I2c::Provider::IProviderI2cConnectionSettings(ptr, take_ownership_from_abi) {}
};
}
#endif