mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-30 06:48:38 +01:00
14 lines
355 B
C
14 lines
355 B
C
/**
|
|
* @file hid.h
|
|
* @brief Human input device (hid:sys) service IPC wrapper.
|
|
* @author p-sam
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
Result hidSysInitialize(void);
|
|
void hidSysExit(void);
|
|
|
|
/// Disables the default behavior of the HOME button (going back to the main menu) if it was enabled
|
|
Result hidSysActivateHomeButton(); |