blob: 1ba019beb9db2ff048ead2731513b57919c9a5c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(502)]
public struct FavoritesListChanged_t
{
public const int k_iCallback = 502;
public uint m_nIP;
public uint m_nQueryPort;
public uint m_nConnPort;
public uint m_nAppID;
public uint m_nFlags;
[MarshalAs(UnmanagedType.I1)]
public bool m_bAdd;
public AccountID_t m_unAccountId;
}
|