blob: 2f87e772e3963d621a0c11cb3b183b0f9b6ee3ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(1023)]
public struct FileDetailsResult_t
{
public const int k_iCallback = 1023;
public EResult m_eResult;
public ulong m_ulFileSize;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 20)]
public byte[] m_FileSHA;
public uint m_unFlags;
}
|