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