// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.RTCAudio { /// /// Input parameters for the function. /// public class GetAudioInputDeviceByIndexOptions { /// /// Index of the device info to retrieve. /// public uint DeviceInfoIndex { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct GetAudioInputDeviceByIndexOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private uint m_DeviceInfoIndex; public uint DeviceInfoIndex { set { m_DeviceInfoIndex = value; } } public void Set(GetAudioInputDeviceByIndexOptions other) { if (other != null) { m_ApiVersion = RTCAudioInterface.GetaudioinputdevicebyindexApiLatest; DeviceInfoIndex = other.DeviceInfoIndex; } } public void Set(object other) { Set(other as GetAudioInputDeviceByIndexOptions); } public void Dispose() { } } }