From 6420a544778ad605119b5ab095ba131a5aad8702 Mon Sep 17 00:00:00 2001 From: XorTroll <33005497+XorTroll@users.noreply.github.com> Date: Sat, 28 Sep 2019 15:54:51 +0200 Subject: [PATCH] Add missing hidsys function in header --- nx/include/switch/services/hidsys.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nx/include/switch/services/hidsys.h b/nx/include/switch/services/hidsys.h index c5942b75..b2730efd 100644 --- a/nx/include/switch/services/hidsys.h +++ b/nx/include/switch/services/hidsys.h @@ -43,6 +43,11 @@ Result hidsysEnableAppletToGetInput(bool enable); **/ Result hidsysAcquireHomeButtonEventHandle(Event* event_out); +/** +* @brief Returns an event that fires when the capture button is pressed. This event does not auto clear. +**/ +Result hidsysAcquireCaptureButtonEventHandle(Event* event_out); + Result hidsysActivateHomeButton(void); Result hidsysActivateSleepButton(void); Result hidsysActivateCaptureButton(void);