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

21 lines
399 B
C
Raw Normal View History

// Copyright 2015 Citra Emulator Project
2014-12-16 21:38:14 -08:00
// Licensed under GPLv2 or any later version
2014-04-16 17:58:36 -07:00
// Refer to the license.txt file included.
#pragma once
namespace Service {
namespace HID {
2014-04-16 17:58:36 -07:00
/// Initialize HID service
2015-03-07 17:54:16 -08:00
void Init();
/// Shutdown HID service
2015-03-07 17:54:16 -08:00
void Shutdown();
2017-01-20 12:46:39 -08:00
/// Reload input devices. Used when input configuration changed
void ReloadInputDevices();
2017-10-12 18:21:49 -07:00
} // namespace HID
} // namespace Service