2018-01-14 21:24:50 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-16 20:58:36 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-05 10:23:21 -04:00
|
|
|
namespace SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
2018-01-14 21:24:50 -05:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::HID {
|
2014-04-16 20:58:36 -04:00
|
|
|
|
2017-01-20 15:46:39 -05:00
|
|
|
/// Reload input devices. Used when input configuration changed
|
|
|
|
void ReloadInputDevices();
|
2017-10-12 21:21:49 -04:00
|
|
|
|
2018-01-14 21:24:50 -05:00
|
|
|
/// Registers all HID services with the specified service manager.
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::HID
|