2015-03-27 23:51:54 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-12-09 10:34:23 +00:00
|
|
|
namespace SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
2016-02-02 06:17:41 +00:00
|
|
|
|
2017-12-09 10:34:23 +00:00
|
|
|
namespace Service {
|
2015-03-27 23:51:54 +00:00
|
|
|
namespace IR {
|
|
|
|
|
2017-03-31 19:27:18 +00:00
|
|
|
/// Reload input devices. Used when input configuration changed
|
|
|
|
void ReloadInputDevices();
|
|
|
|
|
2017-12-09 10:34:23 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
2015-03-27 23:51:54 +00:00
|
|
|
} // namespace IR
|
|
|
|
} // namespace Service
|