blob: 5f541c896c75ef3d046ba02b25044cc73e27d48e (
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(4511)]
public struct HTML_HorizontalScroll_t
{
public const int k_iCallback = 4511;
public HHTMLBrowser unBrowserHandle;
public uint unScrollMax;
public uint unScrollCurrent;
public float flPageScale;
[MarshalAs(UnmanagedType.I1)]
public bool bVisible;
public uint unPageSize;
}
|