26 lines
417 B
C#
26 lines
417 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(4521)]
|
|
public struct HTML_NewWindow_t
|
|
{
|
|
public const int k_iCallback = 4521;
|
|
|
|
public HHTMLBrowser unBrowserHandle;
|
|
|
|
public string pchURL;
|
|
|
|
public uint unX;
|
|
|
|
public uint unY;
|
|
|
|
public uint unWide;
|
|
|
|
public uint unTall;
|
|
|
|
public HHTMLBrowser unNewWindow_BrowserHandle;
|
|
}
|
|
}
|