blob: b2d6e621cbb3612be49c3201ca8914744dad0ded (
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
26
27
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(167)]
public struct DurationControl_t
{
public const int k_iCallback = 167;
public EResult m_eResult;
public AppId_t m_appid;
[MarshalAs(UnmanagedType.I1)]
public bool m_bApplicable;
public int m_csecsLast5h;
public EDurationControlProgress m_progress;
public EDurationControlNotification m_notification;
public int m_csecsToday;
public int m_csecsRemaining;
}
|