suyu/src/core/hle/service/hid/hid.h

20 lines
455 B
C++
Raw Normal View History

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