19 lines
400 B
C#
19 lines
400 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(1309)]
|
|
public struct RemoteStoragePublishFileResult_t
|
|
{
|
|
public const int k_iCallback = 1309;
|
|
|
|
public EResult m_eResult;
|
|
|
|
public PublishedFileId_t m_nPublishedFileId;
|
|
|
|
[MarshalAs(UnmanagedType.I1)]
|
|
public bool m_bUserNeedsToAcceptWorkshopLegalAgreement;
|
|
}
|
|
}
|