21 lines
453 B
C#
21 lines
453 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(1312)]
|
|
public struct RemoteStorageEnumerateUserPublishedFilesResult_t
|
|
{
|
|
public const int k_iCallback = 1312;
|
|
|
|
public EResult m_eResult;
|
|
|
|
public int m_nResultsReturned;
|
|
|
|
public int m_nTotalResultCount;
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 50)]
|
|
public PublishedFileId_t[] m_rgPublishedFileId;
|
|
}
|
|
}
|