18 lines
321 B
C#
18 lines
321 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(4704)]
|
|
public struct SteamInventoryStartPurchaseResult_t
|
|
{
|
|
public const int k_iCallback = 4704;
|
|
|
|
public EResult m_result;
|
|
|
|
public ulong m_ulOrderID;
|
|
|
|
public ulong m_ulTransID;
|
|
}
|
|
}
|