blob: 1a6bf6b99ef36a2498c02363b38eaf72a5ccf0f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4503)]
public struct HTML_StartRequest_t
{
public const int k_iCallback = 4503;
public HHTMLBrowser unBrowserHandle;
public string pchURL;
public string pchTarget;
public string pchPostData;
[MarshalAs(UnmanagedType.I1)]
public bool bIsRedirect;
}
|