// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.RTCAudio
{
///
/// This struct is used to call .
///
public struct AddNotifyAudioDevicesChangedOptions
{
}
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
internal struct AddNotifyAudioDevicesChangedOptionsInternal : ISettable, System.IDisposable
{
private int m_ApiVersion;
public void Set(ref AddNotifyAudioDevicesChangedOptions other)
{
m_ApiVersion = RTCAudioInterface.AddnotifyaudiodeviceschangedApiLatest;
}
public void Set(ref AddNotifyAudioDevicesChangedOptions? other)
{
if (other.HasValue)
{
m_ApiVersion = RTCAudioInterface.AddnotifyaudiodeviceschangedApiLatest;
}
}
public void Dispose()
{
}
}
}