summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/HTTPRequestCompleted_t.cs
blob: 935d2126b961232113a1dce0a405c7b7c5ea7742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}