summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GetAppDependenciesResult_t.cs
blob: b823154d837de8b7fdf8168bb31810f01c8c58ad (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(3416)]
public struct GetAppDependenciesResult_t
{
	public const int k_iCallback = 3416;

	public EResult m_eResult;

	public PublishedFileId_t m_nPublishedFileId;

	[MarshalAs(UnmanagedType.ByValArray, SizeConst = 32)]
	public AppId_t[] m_rgAppIDs;

	public uint m_nNumAppDependencies;

	public uint m_nTotalNumAppDependencies;
}