blob: fa3d127d17feb3cec5c417521b7e1e7b61b063b8 (
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(4513)]
public struct HTML_LinkAtPosition_t
{
public const int k_iCallback = 4513;
public HHTMLBrowser unBrowserHandle;
public uint x;
public uint y;
public string pchURL;
[MarshalAs(UnmanagedType.I1)]
public bool bInput;
[MarshalAs(UnmanagedType.I1)]
public bool bLiveLink;
}
|