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.
70 lines
1.7 KiB
70 lines
1.7 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 struct RTCOptions
|
|
{
|
|
/// <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 System.IntPtr PlatformSpecificOptions { get; set; }
|
|
|
|
internal void Set(ref RTCOptionsInternal other)
|
|
{
|
|
PlatformSpecificOptions = other.PlatformSpecificOptions;
|
|
}
|
|
}
|
|
|
|
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
|
|
internal struct RTCOptionsInternal : IGettable<RTCOptions>, ISettable<RTCOptions>, System.IDisposable
|
|
{
|
|
private int m_ApiVersion;
|
|
private System.IntPtr m_PlatformSpecificOptions;
|
|
|
|
public System.IntPtr PlatformSpecificOptions
|
|
{
|
|
get
|
|
{
|
|
return m_PlatformSpecificOptions;
|
|
}
|
|
|
|
set
|
|
{
|
|
m_PlatformSpecificOptions = value;
|
|
}
|
|
}
|
|
|
|
public void Set(ref RTCOptions other)
|
|
{
|
|
m_ApiVersion = PlatformInterface.RtcoptionsApiLatest;
|
|
PlatformSpecificOptions = other.PlatformSpecificOptions;
|
|
}
|
|
|
|
public void Set(ref RTCOptions? other)
|
|
{
|
|
if (other.HasValue)
|
|
{
|
|
m_ApiVersion = PlatformInterface.RtcoptionsApiLatest;
|
|
PlatformSpecificOptions = other.Value.PlatformSpecificOptions;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Helper.Dispose(ref m_PlatformSpecificOptions);
|
|
}
|
|
|
|
public void Get(out RTCOptions output)
|
|
{
|
|
output = new RTCOptions();
|
|
output.Set(ref this);
|
|
}
|
|
}
|
|
}
|