blob: 130dad8f066da3ee045f6e3200100e5f766d1b36 (
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(1332)]
public struct RemoteStorageFileReadAsyncComplete_t
{
public const int k_iCallback = 1332;
public SteamAPICall_t m_hFileReadAsync;
public EResult m_eResult;
public uint m_nOffset;
public uint m_cubRead;
}
|