Files
2026-03-04 10:03:45 +08:00

19 lines
366 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(4611)]
public struct GetVideoURLResult_t
{
public const int k_iCallback = 4611;
public EResult m_eResult;
public AppId_t m_unVideoAppID;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
public string m_rgchURL;
}
}