blob: 09f8131ee5661de421fbe7e00333322b52997d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4510)]
public struct HTML_CanGoBackAndForward_t
{
public const int k_iCallback = 4510;
public HHTMLBrowser unBrowserHandle;
[MarshalAs(UnmanagedType.I1)]
public bool bCanGoBack;
[MarshalAs(UnmanagedType.I1)]
public bool bCanGoForward;
}
|