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

20 lines
479 B
C
Raw Normal View History

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