19 lines
372 B
C#
19 lines
372 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
|
[CallbackIdentity(202)]
|
|
public struct GSClientDeny_t
|
|
{
|
|
public const int k_iCallback = 202;
|
|
|
|
public CSteamID m_SteamID;
|
|
|
|
public EDenyReason m_eDenyReason;
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
|
|
public string m_rgchOptionalText;
|
|
}
|
|
}
|