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