mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:18:39 +00:00
d254548548
* change hid sharedmem writing to use structures
20 lines
483 B
C#
20 lines
483 B
C#
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using Ryujinx.HLE.HOS.Services.Hid;
|
|
using Ryujinx.HLE.Input;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
|
{
|
|
class Device
|
|
{
|
|
public KEvent ActivateEvent;
|
|
public int ActivateEventHandle;
|
|
|
|
public KEvent DeactivateEvent;
|
|
public int DeactivateEventHandle;
|
|
|
|
public DeviceState State = DeviceState.Unavailable;
|
|
|
|
public ControllerId Handle;
|
|
public NpadIdType NpadIdType;
|
|
}
|
|
} |