Files
2025-07-09 08:58:00 -07:00

1042 lines
58 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_SerialCommunication_H
#define WINRT_Windows_Devices_SerialCommunication_H
#include "winrt/base.h"
static_assert(winrt::check_version(CPPWINRT_VERSION, "2.0.250303.1"), "Mismatched C++/WinRT headers.");
#define CPPWINRT_VERSION "2.0.250303.1"
#include "winrt/Windows.Devices.h"
#include "winrt/impl/Windows.Foundation.2.h"
#include "winrt/impl/Windows.Storage.Streams.2.h"
#include "winrt/impl/Windows.Devices.SerialCommunication.2.h"
namespace winrt::impl
{
template <typename D> auto consume_Windows_Devices_SerialCommunication_IErrorReceivedEventArgs<D>::Error() const
{
winrt::Windows::Devices::SerialCommunication::SerialError value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_Error(reinterpret_cast<int32_t*>(&value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs>**)this;
check_hresult(_winrt_abi_type->get_Error(reinterpret_cast<int32_t*>(&value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_IPinChangedEventArgs<D>::PinChange() const
{
winrt::Windows::Devices::SerialCommunication::SerialPinChange value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_PinChange(reinterpret_cast<int32_t*>(&value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs>**)this;
check_hresult(_winrt_abi_type->get_PinChange(reinterpret_cast<int32_t*>(&value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::BaudRate() const
{
uint32_t value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_BaudRate(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_BaudRate(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::BaudRate(uint32_t value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_BaudRate(value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_BaudRate(value));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::BreakSignalState() const
{
bool value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_BreakSignalState(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_BreakSignalState(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::BreakSignalState(bool value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_BreakSignalState(value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_BreakSignalState(value));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::BytesReceived() const
{
uint32_t value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_BytesReceived(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_BytesReceived(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::CarrierDetectState() const
{
bool value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_CarrierDetectState(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_CarrierDetectState(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::ClearToSendState() const
{
bool value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_ClearToSendState(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_ClearToSendState(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::DataBits() const
{
uint16_t value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_DataBits(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_DataBits(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::DataBits(uint16_t value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_DataBits(value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_DataBits(value));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::DataSetReadyState() const
{
bool value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_DataSetReadyState(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_DataSetReadyState(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::Handshake() const
{
winrt::Windows::Devices::SerialCommunication::SerialHandshake value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_Handshake(reinterpret_cast<int32_t*>(&value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_Handshake(reinterpret_cast<int32_t*>(&value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::Handshake(winrt::Windows::Devices::SerialCommunication::SerialHandshake const& value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_Handshake(static_cast<int32_t>(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_Handshake(static_cast<int32_t>(value)));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::IsDataTerminalReadyEnabled() const
{
bool value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_IsDataTerminalReadyEnabled(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_IsDataTerminalReadyEnabled(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::IsDataTerminalReadyEnabled(bool value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_IsDataTerminalReadyEnabled(value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_IsDataTerminalReadyEnabled(value));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::IsRequestToSendEnabled() const
{
bool value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_IsRequestToSendEnabled(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_IsRequestToSendEnabled(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::IsRequestToSendEnabled(bool value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_IsRequestToSendEnabled(value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_IsRequestToSendEnabled(value));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::Parity() const
{
winrt::Windows::Devices::SerialCommunication::SerialParity value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_Parity(reinterpret_cast<int32_t*>(&value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_Parity(reinterpret_cast<int32_t*>(&value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::Parity(winrt::Windows::Devices::SerialCommunication::SerialParity const& value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_Parity(static_cast<int32_t>(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_Parity(static_cast<int32_t>(value)));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::PortName() const
{
void* value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_PortName(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_PortName(&value));
}
return hstring{ value, take_ownership_from_abi };
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::ReadTimeout() const
{
winrt::Windows::Foundation::TimeSpan value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_ReadTimeout(put_abi(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_ReadTimeout(put_abi(value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::ReadTimeout(winrt::Windows::Foundation::TimeSpan const& value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_ReadTimeout(impl::bind_in(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_ReadTimeout(impl::bind_in(value)));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::StopBits() const
{
winrt::Windows::Devices::SerialCommunication::SerialStopBitCount value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_StopBits(reinterpret_cast<int32_t*>(&value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_StopBits(reinterpret_cast<int32_t*>(&value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::StopBits(winrt::Windows::Devices::SerialCommunication::SerialStopBitCount const& value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_StopBits(static_cast<int32_t>(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_StopBits(static_cast<int32_t>(value)));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::UsbVendorId() const
{
uint16_t value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_UsbVendorId(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_UsbVendorId(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::UsbProductId() const
{
uint16_t value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_UsbProductId(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_UsbProductId(&value));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::WriteTimeout() const
{
winrt::Windows::Foundation::TimeSpan value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_WriteTimeout(put_abi(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_WriteTimeout(put_abi(value)));
}
return value;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::WriteTimeout(winrt::Windows::Foundation::TimeSpan const& value) const
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->put_WriteTimeout(impl::bind_in(value)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->put_WriteTimeout(impl::bind_in(value)));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::InputStream() const
{
void* value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_InputStream(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_InputStream(&value));
}
return winrt::Windows::Storage::Streams::IInputStream{ value, take_ownership_from_abi };
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::OutputStream() const
{
void* value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->get_OutputStream(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->get_OutputStream(&value));
}
return winrt::Windows::Storage::Streams::IOutputStream{ value, take_ownership_from_abi };
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::ErrorReceived(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Devices::SerialCommunication::SerialDevice, winrt::Windows::Devices::SerialCommunication::ErrorReceivedEventArgs> const& reportHandler) const
{
winrt::event_token token{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->add_ErrorReceived(*(void**)(&reportHandler), put_abi(token)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->add_ErrorReceived(*(void**)(&reportHandler), put_abi(token)));
}
return token;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::ErrorReceived(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Devices::SerialCommunication::SerialDevice, winrt::Windows::Devices::SerialCommunication::ErrorReceivedEventArgs> const& reportHandler) const
{
return impl::make_event_revoker<D, ErrorReceived_revoker>(this, ErrorReceived(reportHandler));
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::ErrorReceived(winrt::event_token const& token) const noexcept
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
_winrt_abi_type->remove_ErrorReceived(impl::bind_in(token));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
_winrt_abi_type->remove_ErrorReceived(impl::bind_in(token));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::PinChanged(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Devices::SerialCommunication::SerialDevice, winrt::Windows::Devices::SerialCommunication::PinChangedEventArgs> const& reportHandler) const
{
winrt::event_token token{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->add_PinChanged(*(void**)(&reportHandler), put_abi(token)));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
check_hresult(_winrt_abi_type->add_PinChanged(*(void**)(&reportHandler), put_abi(token)));
}
return token;
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::PinChanged(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Devices::SerialCommunication::SerialDevice, winrt::Windows::Devices::SerialCommunication::PinChangedEventArgs> const& reportHandler) const
{
return impl::make_event_revoker<D, PinChanged_revoker>(this, PinChanged(reportHandler));
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDevice<D>::PinChanged(winrt::event_token const& token) const noexcept
{
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDevice, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)&_winrt_casted_result;
_winrt_abi_type->remove_PinChanged(impl::bind_in(token));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDevice>**)this;
_winrt_abi_type->remove_PinChanged(impl::bind_in(token));
}
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDeviceStatics<D>::GetDeviceSelector() const
{
void* value{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->GetDeviceSelector(&value));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)this;
check_hresult(_winrt_abi_type->GetDeviceSelector(&value));
}
return hstring{ value, take_ownership_from_abi };
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDeviceStatics<D>::GetDeviceSelector(param::hstring const& portName) const
{
void* result{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->GetDeviceSelectorFromPortName(*(void**)(&portName), &result));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)this;
check_hresult(_winrt_abi_type->GetDeviceSelectorFromPortName(*(void**)(&portName), &result));
}
return hstring{ result, take_ownership_from_abi };
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDeviceStatics<D>::GetDeviceSelectorFromUsbVidPid(uint16_t vendorId, uint16_t productId) const
{
void* result{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->GetDeviceSelectorFromUsbVidPid(vendorId, productId, &result));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)this;
check_hresult(_winrt_abi_type->GetDeviceSelectorFromUsbVidPid(vendorId, productId, &result));
}
return hstring{ result, take_ownership_from_abi };
}
template <typename D> auto consume_Windows_Devices_SerialCommunication_ISerialDeviceStatics<D>::FromIdAsync(param::hstring const& deviceId) const
{
void* result{};
if constexpr (!std::is_same_v<D, winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>)
{
winrt::hresult _winrt_cast_result_code;
auto const _winrt_casted_result = impl::try_as_with_reason<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics, D const*>(static_cast<D const*>(this), _winrt_cast_result_code);
check_hresult(_winrt_cast_result_code);
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)&_winrt_casted_result;
check_hresult(_winrt_abi_type->FromIdAsync(*(void**)(&deviceId), &result));
}
else
{
auto const _winrt_abi_type = *(abi_t<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>**)this;
check_hresult(_winrt_abi_type->FromIdAsync(*(void**)(&deviceId), &result));
}
return winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Devices::SerialCommunication::SerialDevice>{ result, take_ownership_from_abi };
}
#ifndef WINRT_LEAN_AND_MEAN
template <typename D>
struct produce<D, winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs> : produce_base<D, winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs>
{
int32_t __stdcall get_Error(int32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Devices::SerialCommunication::SerialError>(this->shim().Error());
return 0;
}
catch (...) { return to_hresult(); }
};
#endif
#ifndef WINRT_LEAN_AND_MEAN
template <typename D>
struct produce<D, winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs> : produce_base<D, winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs>
{
int32_t __stdcall get_PinChange(int32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Devices::SerialCommunication::SerialPinChange>(this->shim().PinChange());
return 0;
}
catch (...) { return to_hresult(); }
};
#endif
#ifndef WINRT_LEAN_AND_MEAN
template <typename D>
struct produce<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice> : produce_base<D, winrt::Windows::Devices::SerialCommunication::ISerialDevice>
{
int32_t __stdcall get_BaudRate(uint32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<uint32_t>(this->shim().BaudRate());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_BaudRate(uint32_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().BaudRate(value);
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_BreakSignalState(bool* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<bool>(this->shim().BreakSignalState());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_BreakSignalState(bool value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().BreakSignalState(value);
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_BytesReceived(uint32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<uint32_t>(this->shim().BytesReceived());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_CarrierDetectState(bool* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<bool>(this->shim().CarrierDetectState());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_ClearToSendState(bool* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<bool>(this->shim().ClearToSendState());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_DataBits(uint16_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<uint16_t>(this->shim().DataBits());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_DataBits(uint16_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().DataBits(value);
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_DataSetReadyState(bool* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<bool>(this->shim().DataSetReadyState());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_Handshake(int32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Devices::SerialCommunication::SerialHandshake>(this->shim().Handshake());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_Handshake(int32_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().Handshake(*reinterpret_cast<winrt::Windows::Devices::SerialCommunication::SerialHandshake const*>(&value));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_IsDataTerminalReadyEnabled(bool* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<bool>(this->shim().IsDataTerminalReadyEnabled());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_IsDataTerminalReadyEnabled(bool value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().IsDataTerminalReadyEnabled(value);
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_IsRequestToSendEnabled(bool* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<bool>(this->shim().IsRequestToSendEnabled());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_IsRequestToSendEnabled(bool value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().IsRequestToSendEnabled(value);
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_Parity(int32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Devices::SerialCommunication::SerialParity>(this->shim().Parity());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_Parity(int32_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().Parity(*reinterpret_cast<winrt::Windows::Devices::SerialCommunication::SerialParity const*>(&value));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_PortName(void** value) noexcept final try
{
clear_abi(value);
typename D::abi_guard guard(this->shim());
*value = detach_from<hstring>(this->shim().PortName());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_ReadTimeout(int64_t* value) noexcept final try
{
zero_abi<winrt::Windows::Foundation::TimeSpan>(value);
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Foundation::TimeSpan>(this->shim().ReadTimeout());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_ReadTimeout(int64_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().ReadTimeout(*reinterpret_cast<winrt::Windows::Foundation::TimeSpan const*>(&value));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_StopBits(int32_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Devices::SerialCommunication::SerialStopBitCount>(this->shim().StopBits());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_StopBits(int32_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().StopBits(*reinterpret_cast<winrt::Windows::Devices::SerialCommunication::SerialStopBitCount const*>(&value));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_UsbVendorId(uint16_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<uint16_t>(this->shim().UsbVendorId());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_UsbProductId(uint16_t* value) noexcept final try
{
typename D::abi_guard guard(this->shim());
*value = detach_from<uint16_t>(this->shim().UsbProductId());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_WriteTimeout(int64_t* value) noexcept final try
{
zero_abi<winrt::Windows::Foundation::TimeSpan>(value);
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Foundation::TimeSpan>(this->shim().WriteTimeout());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall put_WriteTimeout(int64_t value) noexcept final try
{
typename D::abi_guard guard(this->shim());
this->shim().WriteTimeout(*reinterpret_cast<winrt::Windows::Foundation::TimeSpan const*>(&value));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_InputStream(void** value) noexcept final try
{
clear_abi(value);
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Storage::Streams::IInputStream>(this->shim().InputStream());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall get_OutputStream(void** value) noexcept final try
{
clear_abi(value);
typename D::abi_guard guard(this->shim());
*value = detach_from<winrt::Windows::Storage::Streams::IOutputStream>(this->shim().OutputStream());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall add_ErrorReceived(void* reportHandler, winrt::event_token* token) noexcept final try
{
zero_abi<winrt::event_token>(token);
typename D::abi_guard guard(this->shim());
*token = detach_from<winrt::event_token>(this->shim().ErrorReceived(*reinterpret_cast<winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Devices::SerialCommunication::SerialDevice, winrt::Windows::Devices::SerialCommunication::ErrorReceivedEventArgs> const*>(&reportHandler)));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall remove_ErrorReceived(winrt::event_token token) noexcept final
{
typename D::abi_guard guard(this->shim());
this->shim().ErrorReceived(*reinterpret_cast<winrt::event_token const*>(&token));
return 0;
}
int32_t __stdcall add_PinChanged(void* reportHandler, winrt::event_token* token) noexcept final try
{
zero_abi<winrt::event_token>(token);
typename D::abi_guard guard(this->shim());
*token = detach_from<winrt::event_token>(this->shim().PinChanged(*reinterpret_cast<winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Devices::SerialCommunication::SerialDevice, winrt::Windows::Devices::SerialCommunication::PinChangedEventArgs> const*>(&reportHandler)));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall remove_PinChanged(winrt::event_token token) noexcept final
{
typename D::abi_guard guard(this->shim());
this->shim().PinChanged(*reinterpret_cast<winrt::event_token const*>(&token));
return 0;
}
};
#endif
#ifndef WINRT_LEAN_AND_MEAN
template <typename D>
struct produce<D, winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics> : produce_base<D, winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics>
{
int32_t __stdcall GetDeviceSelector(void** value) noexcept final try
{
clear_abi(value);
typename D::abi_guard guard(this->shim());
*value = detach_from<hstring>(this->shim().GetDeviceSelector());
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall GetDeviceSelectorFromPortName(void* portName, void** result) noexcept final try
{
clear_abi(result);
typename D::abi_guard guard(this->shim());
*result = detach_from<hstring>(this->shim().GetDeviceSelector(*reinterpret_cast<hstring const*>(&portName)));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall GetDeviceSelectorFromUsbVidPid(uint16_t vendorId, uint16_t productId, void** result) noexcept final try
{
clear_abi(result);
typename D::abi_guard guard(this->shim());
*result = detach_from<hstring>(this->shim().GetDeviceSelectorFromUsbVidPid(vendorId, productId));
return 0;
}
catch (...) { return to_hresult(); }
int32_t __stdcall FromIdAsync(void* deviceId, void** result) noexcept final try
{
clear_abi(result);
typename D::abi_guard guard(this->shim());
*result = detach_from<winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Devices::SerialCommunication::SerialDevice>>(this->shim().FromIdAsync(*reinterpret_cast<hstring const*>(&deviceId)));
return 0;
}
catch (...) { return to_hresult(); }
};
#endif
}
WINRT_EXPORT namespace winrt::Windows::Devices::SerialCommunication
{
inline auto SerialDevice::GetDeviceSelector()
{
return impl::call_factory_cast<hstring(*)(ISerialDeviceStatics const&), SerialDevice, ISerialDeviceStatics>([](ISerialDeviceStatics const& f) { return f.GetDeviceSelector(); });
}
inline auto SerialDevice::GetDeviceSelector(param::hstring const& portName)
{
return impl::call_factory<SerialDevice, ISerialDeviceStatics>([&](ISerialDeviceStatics const& f) { return f.GetDeviceSelector(portName); });
}
inline auto SerialDevice::GetDeviceSelectorFromUsbVidPid(uint16_t vendorId, uint16_t productId)
{
return impl::call_factory<SerialDevice, ISerialDeviceStatics>([&](ISerialDeviceStatics const& f) { return f.GetDeviceSelectorFromUsbVidPid(vendorId, productId); });
}
inline auto SerialDevice::FromIdAsync(param::hstring const& deviceId)
{
return impl::call_factory<SerialDevice, ISerialDeviceStatics>([&](ISerialDeviceStatics const& f) { return f.FromIdAsync(deviceId); });
}
}
namespace std
{
#ifndef WINRT_LEAN_AND_MEAN
template<> struct hash<winrt::Windows::Devices::SerialCommunication::IErrorReceivedEventArgs> : winrt::impl::hash_base {};
template<> struct hash<winrt::Windows::Devices::SerialCommunication::IPinChangedEventArgs> : winrt::impl::hash_base {};
template<> struct hash<winrt::Windows::Devices::SerialCommunication::ISerialDevice> : winrt::impl::hash_base {};
template<> struct hash<winrt::Windows::Devices::SerialCommunication::ISerialDeviceStatics> : winrt::impl::hash_base {};
template<> struct hash<winrt::Windows::Devices::SerialCommunication::ErrorReceivedEventArgs> : winrt::impl::hash_base {};
template<> struct hash<winrt::Windows::Devices::SerialCommunication::PinChangedEventArgs> : winrt::impl::hash_base {};
template<> struct hash<winrt::Windows::Devices::SerialCommunication::SerialDevice> : winrt::impl::hash_base {};
#endif
#ifdef __cpp_lib_format
#endif
}
#endif