blob: 5c0f7b1854c9840cd8f95c25403678c7a54568ff (
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
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4521)]
public struct HTML_NewWindow_t
{
public const int k_iCallback = 4521;
public HHTMLBrowser unBrowserHandle;
public string pchURL;
public uint unX;
public uint unY;
public uint unWide;
public uint unTall;
public HHTMLBrowser unNewWindow_BrowserHandle_IGNORE;
}
|