21 lines
388 B
C#
21 lines
388 B
C#
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;
|
|
}
|
|
}
|