blob: afa5dc16cd302299377bad10997fd32bb7cf3d32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4512)]
public struct HTML_VerticalScroll_t
{
public const int k_iCallback = 4512;
public HHTMLBrowser unBrowserHandle;
public uint unScrollMax;
public uint unScrollCurrent;
public float flPageScale;
[MarshalAs(UnmanagedType.I1)]
public bool bVisible;
public uint unPageSize;
}
|