Files
2026-02-21 16:45:37 +08:00

26 lines
435 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4513)]
public struct HTML_LinkAtPosition_t
{
public const int k_iCallback = 4513;
public HHTMLBrowser unBrowserHandle;
public uint x;
public uint y;
public string pchURL;
[MarshalAs(UnmanagedType.I1)]
public bool bInput;
[MarshalAs(UnmanagedType.I1)]
public bool bLiveLink;
}
}