blob: 06a2d03bfe89408eb2719932b99e89372a83ee00 (
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
28
29
30
31
32
33
34
35
|
using System;
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4502)]
public struct HTML_NeedsPaint_t
{
public const int k_iCallback = 4502;
public HHTMLBrowser unBrowserHandle;
public IntPtr pBGRA;
public uint unWide;
public uint unTall;
public uint unUpdateX;
public uint unUpdateY;
public uint unUpdateWide;
public uint unUpdateTall;
public uint unScrollX;
public uint unScrollY;
public float flPageScale;
public uint unPageSerial;
}
|