citra/src/core/hle/service/ir/ir.h

19 lines
390 B
C++
Raw Normal View History

// 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;
}
namespace Service::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);
} // namespace Service::IR