2015-01-18 20:07:48 -03:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
2014-12-17 02:38:14 -03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-16 21:58:36 -03:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-18 20:07:48 -03:00
|
|
|
namespace Service {
|
|
|
|
namespace HID {
|
2014-04-16 21:58:36 -03:00
|
|
|
|
2015-03-09 01:14:59 -03:00
|
|
|
/// Initialize HID service
|
2015-03-07 22:54:16 -03:00
|
|
|
void Init();
|
2015-03-09 01:14:59 -03:00
|
|
|
|
|
|
|
/// Shutdown HID service
|
2015-03-07 22:54:16 -03:00
|
|
|
void Shutdown();
|
2017-01-20 17:46:39 -03:00
|
|
|
|
|
|
|
/// Reload input devices. Used when input configuration changed
|
|
|
|
void ReloadInputDevices();
|
2017-10-12 22:21:49 -03:00
|
|
|
|
|
|
|
} // namespace HID
|
|
|
|
} // namespace Service
|