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.
46 lines
1.0 KiB
46 lines
1.0 KiB
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.AntiCheatServer
|
|
{
|
|
public class GetProtectMessageOutputLengthOptions
|
|
{
|
|
/// <summary>
|
|
/// Length in bytes of input
|
|
/// </summary>
|
|
public uint DataLengthBytes { get; set; }
|
|
}
|
|
|
|
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
|
|
internal struct GetProtectMessageOutputLengthOptionsInternal : ISettable, System.IDisposable
|
|
{
|
|
private int m_ApiVersion;
|
|
private uint m_DataLengthBytes;
|
|
|
|
public uint DataLengthBytes
|
|
{
|
|
set
|
|
{
|
|
m_DataLengthBytes = value;
|
|
}
|
|
}
|
|
|
|
public void Set(GetProtectMessageOutputLengthOptions other)
|
|
{
|
|
if (other != null)
|
|
{
|
|
m_ApiVersion = AntiCheatServerInterface.GetprotectmessageoutputlengthApiLatest;
|
|
DataLengthBytes = other.DataLengthBytes;
|
|
}
|
|
}
|
|
|
|
public void Set(object other)
|
|
{
|
|
Set(other as GetProtectMessageOutputLengthOptions);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|