mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 01:50:05 +00:00
20 lines
384 B
C++
20 lines
384 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "common/logging/log.h"
|
|
#include "core/hle/service/hid/hid.h"
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace HID {
|
|
|
|
void Init() {}
|
|
|
|
void Shutdown() {}
|
|
|
|
void ReloadInputDevices() {}
|
|
|
|
} // namespace HID
|
|
} // namespace Service
|