blob: c8b08fb36912fc03c9c970a91e9334e04eaf8658 (
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(4505)]
public struct HTML_URLChanged_t
{
public const int k_iCallback = 4505;
public HHTMLBrowser unBrowserHandle;
public string pchURL;
public string pchPostData;
[MarshalAs(UnmanagedType.I1)]
public bool bIsRedirect;
public string pchPageTitle;
[MarshalAs(UnmanagedType.I1)]
public bool bNewNavigation;
}
|