2018-01-15 02:24:50 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
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
|
|
|
|
|
2018-10-05 14:23:21 +00:00
|
|
|
namespace SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
2018-01-15 02:24:50 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::HID {
|
2014-04-17 00:58:36 +00:00
|
|
|
|
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
|
|
|
|
2018-01-15 02:24:50 +00:00
|
|
|
/// Registers all HID services with the specified service manager.
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::HID
|