// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.240405.15 #pragma once #ifndef WINRT_Windows_Devices_I2c_H #define WINRT_Windows_Devices_I2c_H #include "winrt/base.h" static_assert(winrt::check_version(CPPWINRT_VERSION, "2.0.240405.15"), "Mismatched C++/WinRT headers."); #define CPPWINRT_VERSION "2.0.240405.15" #include "winrt/Windows.Devices.h" #include "winrt/impl/Windows.Devices.I2c.Provider.2.h" #include "winrt/impl/Windows.Foundation.2.h" #include "winrt/impl/Windows.Foundation.Collections.2.h" #include "winrt/impl/Windows.Devices.I2c.2.h" namespace winrt::impl { template auto consume_Windows_Devices_I2c_II2cConnectionSettings::SlaveAddress() const { int32_t value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettings)->get_SlaveAddress(&value)); return value; } template auto consume_Windows_Devices_I2c_II2cConnectionSettings::SlaveAddress(int32_t value) const { check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettings)->put_SlaveAddress(value)); } template auto consume_Windows_Devices_I2c_II2cConnectionSettings::BusSpeed() const { winrt::Windows::Devices::I2c::I2cBusSpeed value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettings)->get_BusSpeed(reinterpret_cast(&value))); return value; } template auto consume_Windows_Devices_I2c_II2cConnectionSettings::BusSpeed(winrt::Windows::Devices::I2c::I2cBusSpeed const& value) const { check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettings)->put_BusSpeed(static_cast(value))); } template auto consume_Windows_Devices_I2c_II2cConnectionSettings::SharingMode() const { winrt::Windows::Devices::I2c::I2cSharingMode value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettings)->get_SharingMode(reinterpret_cast(&value))); return value; } template auto consume_Windows_Devices_I2c_II2cConnectionSettings::SharingMode(winrt::Windows::Devices::I2c::I2cSharingMode const& value) const { check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettings)->put_SharingMode(static_cast(value))); } template auto consume_Windows_Devices_I2c_II2cConnectionSettingsFactory::Create(int32_t slaveAddress) const { void* value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cConnectionSettingsFactory)->Create(slaveAddress, &value)); return winrt::Windows::Devices::I2c::I2cConnectionSettings{ value, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cController::GetDevice(winrt::Windows::Devices::I2c::I2cConnectionSettings const& settings) const { void* device{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cController)->GetDevice(*(void**)(&settings), &device)); return winrt::Windows::Devices::I2c::I2cDevice{ device, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cControllerStatics::GetControllersAsync(winrt::Windows::Devices::I2c::Provider::II2cProvider const& provider) const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cControllerStatics)->GetControllersAsync(*(void**)(&provider), &operation)); return winrt::Windows::Foundation::IAsyncOperation>{ operation, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cControllerStatics::GetDefaultAsync() const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cControllerStatics)->GetDefaultAsync(&operation)); return winrt::Windows::Foundation::IAsyncOperation{ operation, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cDevice::DeviceId() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->get_DeviceId(&value)); return hstring{ value, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cDevice::ConnectionSettings() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->get_ConnectionSettings(&value)); return winrt::Windows::Devices::I2c::I2cConnectionSettings{ value, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cDevice::Write(array_view buffer) const { check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->Write(buffer.size(), get_abi(buffer))); } template auto consume_Windows_Devices_I2c_II2cDevice::WritePartial(array_view buffer) const { winrt::Windows::Devices::I2c::I2cTransferResult result{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->WritePartial(buffer.size(), get_abi(buffer), put_abi(result))); return result; } template auto consume_Windows_Devices_I2c_II2cDevice::Read(array_view buffer) const { check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->Read(buffer.size(), put_abi(buffer))); } template auto consume_Windows_Devices_I2c_II2cDevice::ReadPartial(array_view buffer) const { winrt::Windows::Devices::I2c::I2cTransferResult result{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->ReadPartial(buffer.size(), put_abi(buffer), put_abi(result))); return result; } template auto consume_Windows_Devices_I2c_II2cDevice::WriteRead(array_view writeBuffer, array_view readBuffer) const { check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->WriteRead(writeBuffer.size(), get_abi(writeBuffer), readBuffer.size(), put_abi(readBuffer))); } template auto consume_Windows_Devices_I2c_II2cDevice::WriteReadPartial(array_view writeBuffer, array_view readBuffer) const { winrt::Windows::Devices::I2c::I2cTransferResult result{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDevice)->WriteReadPartial(writeBuffer.size(), get_abi(writeBuffer), readBuffer.size(), put_abi(readBuffer), put_abi(result))); return result; } template auto consume_Windows_Devices_I2c_II2cDeviceStatics::GetDeviceSelector() const { void* value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDeviceStatics)->GetDeviceSelector(&value)); return hstring{ value, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cDeviceStatics::GetDeviceSelector(param::hstring const& friendlyName) const { void* value{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDeviceStatics)->GetDeviceSelectorFromFriendlyName(*(void**)(&friendlyName), &value)); return hstring{ value, take_ownership_from_abi }; } template auto consume_Windows_Devices_I2c_II2cDeviceStatics::FromIdAsync(param::hstring const& deviceId, winrt::Windows::Devices::I2c::I2cConnectionSettings const& settings) const { void* operation{}; check_hresult(WINRT_IMPL_SHIM(winrt::Windows::Devices::I2c::II2cDeviceStatics)->FromIdAsync(*(void**)(&deviceId), *(void**)(&settings), &operation)); return winrt::Windows::Foundation::IAsyncOperation{ operation, take_ownership_from_abi }; } #ifndef WINRT_LEAN_AND_MEAN template struct produce : produce_base { int32_t __stdcall get_SlaveAddress(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().SlaveAddress()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SlaveAddress(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SlaveAddress(value); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_BusSpeed(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().BusSpeed()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_BusSpeed(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().BusSpeed(*reinterpret_cast(&value)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_SharingMode(int32_t* value) noexcept final try { typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().SharingMode()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall put_SharingMode(int32_t value) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().SharingMode(*reinterpret_cast(&value)); return 0; } catch (...) { return to_hresult(); } }; #endif #ifndef WINRT_LEAN_AND_MEAN template struct produce : produce_base { int32_t __stdcall Create(int32_t slaveAddress, void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().Create(slaveAddress)); return 0; } catch (...) { return to_hresult(); } }; #endif #ifndef WINRT_LEAN_AND_MEAN template struct produce : produce_base { int32_t __stdcall GetDevice(void* settings, void** device) noexcept final try { clear_abi(device); typename D::abi_guard guard(this->shim()); *device = detach_from(this->shim().GetDevice(*reinterpret_cast(&settings))); return 0; } catch (...) { return to_hresult(); } }; #endif #ifndef WINRT_LEAN_AND_MEAN template struct produce : produce_base { int32_t __stdcall GetControllersAsync(void* provider, void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from>>(this->shim().GetControllersAsync(*reinterpret_cast(&provider))); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall GetDefaultAsync(void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from>(this->shim().GetDefaultAsync()); return 0; } catch (...) { return to_hresult(); } }; #endif #ifndef WINRT_LEAN_AND_MEAN template struct produce : produce_base { int32_t __stdcall get_DeviceId(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().DeviceId()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall get_ConnectionSettings(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().ConnectionSettings()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall Write(uint32_t __bufferSize, uint8_t* buffer) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().Write(array_view(reinterpret_cast(buffer), reinterpret_cast(buffer) + __bufferSize)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall WritePartial(uint32_t __bufferSize, uint8_t* buffer, struct struct_Windows_Devices_I2c_I2cTransferResult* result) noexcept final try { zero_abi(result); typename D::abi_guard guard(this->shim()); *result = detach_from(this->shim().WritePartial(array_view(reinterpret_cast(buffer), reinterpret_cast(buffer) + __bufferSize))); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall Read(uint32_t __bufferSize, uint8_t* buffer) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().Read(array_view(reinterpret_cast(buffer), reinterpret_cast(buffer) + __bufferSize)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall ReadPartial(uint32_t __bufferSize, uint8_t* buffer, struct struct_Windows_Devices_I2c_I2cTransferResult* result) noexcept final try { zero_abi(result); typename D::abi_guard guard(this->shim()); *result = detach_from(this->shim().ReadPartial(array_view(reinterpret_cast(buffer), reinterpret_cast(buffer) + __bufferSize))); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall WriteRead(uint32_t __writeBufferSize, uint8_t* writeBuffer, uint32_t __readBufferSize, uint8_t* readBuffer) noexcept final try { typename D::abi_guard guard(this->shim()); this->shim().WriteRead(array_view(reinterpret_cast(writeBuffer), reinterpret_cast(writeBuffer) + __writeBufferSize), array_view(reinterpret_cast(readBuffer), reinterpret_cast(readBuffer) + __readBufferSize)); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall WriteReadPartial(uint32_t __writeBufferSize, uint8_t* writeBuffer, uint32_t __readBufferSize, uint8_t* readBuffer, struct struct_Windows_Devices_I2c_I2cTransferResult* result) noexcept final try { zero_abi(result); typename D::abi_guard guard(this->shim()); *result = detach_from(this->shim().WriteReadPartial(array_view(reinterpret_cast(writeBuffer), reinterpret_cast(writeBuffer) + __writeBufferSize), array_view(reinterpret_cast(readBuffer), reinterpret_cast(readBuffer) + __readBufferSize))); return 0; } catch (...) { return to_hresult(); } }; #endif template struct produce : produce_base { int32_t __stdcall GetDeviceSelector(void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().GetDeviceSelector()); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall GetDeviceSelectorFromFriendlyName(void* friendlyName, void** value) noexcept final try { clear_abi(value); typename D::abi_guard guard(this->shim()); *value = detach_from(this->shim().GetDeviceSelector(*reinterpret_cast(&friendlyName))); return 0; } catch (...) { return to_hresult(); } int32_t __stdcall FromIdAsync(void* deviceId, void* settings, void** operation) noexcept final try { clear_abi(operation); typename D::abi_guard guard(this->shim()); *operation = detach_from>(this->shim().FromIdAsync(*reinterpret_cast(&deviceId), *reinterpret_cast(&settings))); return 0; } catch (...) { return to_hresult(); } }; } WINRT_EXPORT namespace winrt::Windows::Devices::I2c { inline I2cConnectionSettings::I2cConnectionSettings(int32_t slaveAddress) : I2cConnectionSettings(impl::call_factory([&](II2cConnectionSettingsFactory const& f) { return f.Create(slaveAddress); })) { } inline auto I2cController::GetControllersAsync(winrt::Windows::Devices::I2c::Provider::II2cProvider const& provider) { return impl::call_factory([&](II2cControllerStatics const& f) { return f.GetControllersAsync(provider); }); } inline auto I2cController::GetDefaultAsync() { return impl::call_factory_cast(*)(II2cControllerStatics const&), I2cController, II2cControllerStatics>([](II2cControllerStatics const& f) { return f.GetDefaultAsync(); }); } inline auto I2cDevice::GetDeviceSelector() { return impl::call_factory_cast([](II2cDeviceStatics const& f) { return f.GetDeviceSelector(); }); } inline auto I2cDevice::GetDeviceSelector(param::hstring const& friendlyName) { return impl::call_factory([&](II2cDeviceStatics const& f) { return f.GetDeviceSelector(friendlyName); }); } inline auto I2cDevice::FromIdAsync(param::hstring const& deviceId, winrt::Windows::Devices::I2c::I2cConnectionSettings const& settings) { return impl::call_factory([&](II2cDeviceStatics const& f) { return f.FromIdAsync(deviceId, settings); }); } } namespace std { #ifndef WINRT_LEAN_AND_MEAN template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; template<> struct hash : winrt::impl::hash_base {}; #endif #ifdef __cpp_lib_format #endif } #endif