16 lines
288 B
C#
16 lines
288 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(4507)]
|
|
public struct HTML_OpenLinkInNewTab_t
|
|
{
|
|
public const int k_iCallback = 4507;
|
|
|
|
public HHTMLBrowser unBrowserHandle;
|
|
|
|
public string pchURL;
|
|
}
|
|
}
|