Files
UltimateFishing2020/Assets/Plugins/Assembly-CSharp-firstpass/Steamworks/RemoteStorageFileShareResult_t.cs
2026-03-04 10:03:45 +08:00

19 lines
379 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(1307)]
public struct RemoteStorageFileShareResult_t
{
public const int k_iCallback = 1307;
public EResult m_eResult;
public UGCHandle_t m_hFile;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
public string m_rgchFilename;
}
}