blob: 0baae1dd47cfd03e6a4fdb22688ef19214c636b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(2103)]
public struct HTTPRequestDataReceived_t
{
public const int k_iCallback = 2103;
public HTTPRequestHandle m_hRequest;
public ulong m_ulContextValue;
public uint m_cOffset;
public uint m_cBytesReceived;
}
|