15 lines
199 B
C#
15 lines
199 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Valve.VR
|
|
{
|
|
public struct VREvent_Process_t
|
|
{
|
|
public uint pid;
|
|
|
|
public uint oldPid;
|
|
|
|
[MarshalAs(UnmanagedType.I1)]
|
|
public bool bForced;
|
|
}
|
|
}
|