summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SteamAPICallCompleted_t.cs
blob: fb625bd5cd8eb5e1e4e8ebac72246f7c7097fb18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(703)]
public struct SteamAPICallCompleted_t
{
	public const int k_iCallback = 703;

	public SteamAPICall_t m_hAsyncCall;

	public int m_iCallback;

	public uint m_cubParam;
}