summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/HTML_FileOpenDialog_t.cs
blob: 9a66014bf5f6b2e6d4f2a28a50fc5390266c09b6 (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(4516)]
public struct HTML_FileOpenDialog_t
{
	public const int k_iCallback = 4516;

	public HHTMLBrowser unBrowserHandle;

	public string pchTitle;

	public string pchInitialFile;
}