blob: 017f29d02a3c0ca1b9afe9025a98c5b7a9cd7172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(347)]
public struct SetPersonaNameResponse_t
{
public const int k_iCallback = 347;
[MarshalAs(UnmanagedType.I1)]
public bool m_bSuccess;
[MarshalAs(UnmanagedType.I1)]
public bool m_bLocalSuccess;
public EResult m_result;
}
|