Files
UltimateFishing/Assets/Plugins/Assembly-CSharp-firstpass/Steamworks/RemoteStorageFileShareResult_t.cs
2026-02-21 16:45:37 +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;
}
}