blob: c198357ffbac8beb25c62bad8ff62515249196ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(1008)]
public struct RegisterActivationCodeResponse_t
{
public const int k_iCallback = 1008;
public ERegisterActivationCodeResult m_eResult;
public uint m_unPackageRegistered;
}
|