mirror of https://git.suyu.dev/suyu/suyu
service: hid: Implement home, capture and sleep buttons
parent
6a2532fe17
commit
b8f16f3538
@ -0,0 +1,31 @@
|
|||||||
|
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "hid_core/hid_types.h"
|
||||||
|
|
||||||
|
namespace Service::HID {
|
||||||
|
|
||||||
|
// This is nn::hid::system::SleepButtonState
|
||||||
|
struct SleepButtonState {
|
||||||
|
s64 sampling_number{};
|
||||||
|
Core::HID::SleepButtonState buttons;
|
||||||
|
};
|
||||||
|
static_assert(sizeof(SleepButtonState) == 0x10, "SleepButtonState is an invalid size");
|
||||||
|
|
||||||
|
// This is nn::hid::system::HomeButtonState
|
||||||
|
struct HomeButtonState {
|
||||||
|
s64 sampling_number{};
|
||||||
|
Core::HID::HomeButtonState buttons;
|
||||||
|
};
|
||||||
|
static_assert(sizeof(HomeButtonState) == 0x10, "HomeButtonState is an invalid size");
|
||||||
|
|
||||||
|
// This is nn::hid::system::SleepButtonState
|
||||||
|
struct CaptureButtonState {
|
||||||
|
s64 sampling_number{};
|
||||||
|
Core::HID::CaptureButtonState buttons;
|
||||||
|
};
|
||||||
|
static_assert(sizeof(CaptureButtonState) == 0x10, "CaptureButtonState is an invalid size");
|
||||||
|
|
||||||
|
} // namespace Service::HID
|
Loading…
Reference in New Issue