mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-08 14:02:32 -07:00
13 lines
267 B
C#
13 lines
267 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Irs
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x4)]
|
|
struct IrCameraHandle
|
|
{
|
|
public byte PlayerNumber;
|
|
public byte DeviceType;
|
|
public ushort Reserved;
|
|
}
|
|
}
|