mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-29 22:39:11 +01:00
15 lines
356 B
C
15 lines
356 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();
|