19 lines
379 B
C#
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;
|
|
}
|
|
}
|