20 lines
387 B
C#
20 lines
387 B
C#
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;
|
|
}
|
|
}
|