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.

51 lines
1.4 KiB

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Sessions
{
/// <summary>
/// Input parameters for the <see cref="SessionSearch.CopySearchResultByIndex" /> function.
/// </summary>
public struct SessionSearchCopySearchResultByIndexOptions
{
/// <summary>
/// The index of the session to retrieve within the completed search query
/// <seealso cref="SessionSearch.GetSearchResultCount" />
/// </summary>
public uint SessionIndex { get; set; }
}
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
internal struct SessionSearchCopySearchResultByIndexOptionsInternal : ISettable<SessionSearchCopySearchResultByIndexOptions>, System.IDisposable
{
private int m_ApiVersion;
private uint m_SessionIndex;
public uint SessionIndex
{
set
{
m_SessionIndex = value;
}
}
public void Set(ref SessionSearchCopySearchResultByIndexOptions other)
{
m_ApiVersion = SessionSearch.SessionsearchCopysearchresultbyindexApiLatest;
SessionIndex = other.SessionIndex;
}
public void Set(ref SessionSearchCopySearchResultByIndexOptions? other)
{
if (other.HasValue)
{
m_ApiVersion = SessionSearch.SessionsearchCopysearchresultbyindexApiLatest;
SessionIndex = other.Value.SessionIndex;
}
}
public void Dispose()
{
}
}
}