You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
73 lines
2.0 KiB
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.Platform
|
|
{
|
|
/// <summary>
|
|
/// Platform RTC options.
|
|
/// </summary>
|
|
public class WindowsRTCOptions : ISettable
|
|
{
|
|
/// <summary>
|
|
/// This field is for platform specific initialization if any.
|
|
///
|
|
/// If provided then the structure will be located in <System>/eos_<System>.h.
|
|
/// The structure will be named EOS_<System>_RTCOptions.
|
|
/// </summary>
|
|
public WindowsRTCOptionsPlatformSpecificOptions PlatformSpecificOptions { get; set; }
|
|
|
|
internal void Set(WindowsRTCOptionsInternal? other)
|
|
{
|
|
if (other != null)
|
|
{
|
|
PlatformSpecificOptions = other.Value.PlatformSpecificOptions;
|
|
}
|
|
}
|
|
|
|
public void Set(object other)
|
|
{
|
|
Set(other as WindowsRTCOptionsInternal?);
|
|
}
|
|
}
|
|
|
|
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
|
|
internal struct WindowsRTCOptionsInternal : ISettable, System.IDisposable
|
|
{
|
|
private int m_ApiVersion;
|
|
private System.IntPtr m_PlatformSpecificOptions;
|
|
|
|
public WindowsRTCOptionsPlatformSpecificOptions PlatformSpecificOptions
|
|
{
|
|
get
|
|
{
|
|
WindowsRTCOptionsPlatformSpecificOptions value;
|
|
Helper.TryMarshalGet<WindowsRTCOptionsPlatformSpecificOptionsInternal, WindowsRTCOptionsPlatformSpecificOptions>(m_PlatformSpecificOptions, out value);
|
|
return value;
|
|
}
|
|
|
|
set
|
|
{
|
|
Helper.TryMarshalSet<WindowsRTCOptionsPlatformSpecificOptionsInternal, WindowsRTCOptionsPlatformSpecificOptions>(ref m_PlatformSpecificOptions, value);
|
|
}
|
|
}
|
|
|
|
public void Set(WindowsRTCOptions other)
|
|
{
|
|
if (other != null)
|
|
{
|
|
m_ApiVersion = PlatformInterface.RtcoptionsApiLatest;
|
|
PlatformSpecificOptions = other.PlatformSpecificOptions;
|
|
}
|
|
}
|
|
|
|
public void Set(object other)
|
|
{
|
|
Set(other as WindowsRTCOptions);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Helper.TryMarshalDispose(ref m_PlatformSpecificOptions);
|
|
}
|
|
}
|
|
}
|