23 lines
435 B
C#
23 lines
435 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(2101)]
|
|
public struct HTTPRequestCompleted_t
|
|
{
|
|
public const int k_iCallback = 2101;
|
|
|
|
public HTTPRequestHandle m_hRequest;
|
|
|
|
public ulong m_ulContextValue;
|
|
|
|
[MarshalAs(UnmanagedType.I1)]
|
|
public bool m_bRequestSuccessful;
|
|
|
|
public EHTTPStatusCode m_eStatusCode;
|
|
|
|
public uint m_unBodySize;
|
|
}
|
|
}
|