mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 14:07:11 +02:00
20 lines
511 B
C#
20 lines
511 B
C#
using Ryujinx.Common.Memory;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Input.Motion.CemuHook.Protocol
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct ControllerInfoResponse
|
|
{
|
|
public SharedResponse Shared;
|
|
private readonly byte _zero;
|
|
}
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct ControllerInfoRequest
|
|
{
|
|
public MessageType Type;
|
|
public int PortsCount;
|
|
public Array4<byte> PortIndices;
|
|
}
|
|
}
|