1
0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
yuzu-mainline/src/core/hle/service/hid/hid.h
2017-10-12 21:21:49 -04:00

21 lines
399 B
C++

// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
namespace Service {
namespace HID {
/// Initialize HID service
void Init();
/// Shutdown HID service
void Shutdown();
/// Reload input devices. Used when input configuration changed
void ReloadInputDevices();
} // namespace HID
} // namespace Service