// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Lobby { /// /// Input parameters for the function. /// public struct LobbySearchSetMaxResultsOptions { /// /// Maximum number of search results to return from the query /// public uint MaxResults { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct LobbySearchSetMaxResultsOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private uint m_MaxResults; public uint MaxResults { set { m_MaxResults = value; } } public void Set(ref LobbySearchSetMaxResultsOptions other) { m_ApiVersion = LobbySearch.LobbysearchSetmaxresultsApiLatest; MaxResults = other.MaxResults; } public void Set(ref LobbySearchSetMaxResultsOptions? other) { if (other.HasValue) { m_ApiVersion = LobbySearch.LobbysearchSetmaxresultsApiLatest; MaxResults = other.Value.MaxResults; } } public void Dispose() { } } }