mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 15:16:12 -04:00
29 lines
1.3 KiB
C++
29 lines
1.3 KiB
C++
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.250303.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 WINRT_IMPL_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
|