mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
19 lines
384 B
C++
19 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
|