18 lines
319 B
C#
18 lines
319 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(1301)]
|
|
public struct RemoteStorageAppSyncedClient_t
|
|
{
|
|
public const int k_iCallback = 1301;
|
|
|
|
public AppId_t m_nAppID;
|
|
|
|
public EResult m_eResult;
|
|
|
|
public int m_unNumDownloads;
|
|
}
|
|
}
|