// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.UI { /// /// Input parameters for the function. /// public class ReportKeyEventOptions { /// /// The input data pushed to the SDK. /// public System.IntPtr PlatformSpecificInputData { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct ReportKeyEventOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private System.IntPtr m_PlatformSpecificInputData; public System.IntPtr PlatformSpecificInputData { set { m_PlatformSpecificInputData = value; } } public void Set(ReportKeyEventOptions other) { if (other != null) { m_ApiVersion = UIInterface.ReportkeyeventApiLatest; PlatformSpecificInputData = other.PlatformSpecificInputData; } } public void Set(object other) { Set(other as ReportKeyEventOptions); } public void Dispose() { Helper.TryMarshalDispose(ref m_PlatformSpecificInputData); } } }