summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/HTML_FinishedRequest_t.cs
blob: e64410ae4a731c12f494b3518eb95e41b73ec40d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4506)]
public struct HTML_FinishedRequest_t
{
	public const int k_iCallback = 4506;

	public HHTMLBrowser unBrowserHandle;

	public string pchURL;

	public string pchPageTitle;
}