summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/HTML_SearchResults_t.cs
blob: 132130bacac4456fa908677bdf72d72eaefcf5f8 (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(4509)]
public struct HTML_SearchResults_t
{
	public const int k_iCallback = 4509;

	public HHTMLBrowser unBrowserHandle;

	public uint unResults;

	public uint unCurrentMatch;
}