2015-01-18 23:07:48 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "common/logging/log.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "core/hle/service/service.h"
|
2015-03-09 04:14:59 +00:00
|
|
|
|
2015-01-18 23:07:48 +00:00
|
|
|
namespace Service {
|
|
|
|
namespace HID {
|
|
|
|
|
2017-10-13 01:21:49 +00:00
|
|
|
void Init() {}
|
2015-01-18 23:07:48 +00:00
|
|
|
|
2017-10-13 01:21:49 +00:00
|
|
|
void Shutdown() {}
|
2015-01-18 23:07:48 +00:00
|
|
|
|
2017-10-13 01:21:49 +00:00
|
|
|
void ReloadInputDevices() {}
|
2015-01-18 23:07:48 +00:00
|
|
|
|
2015-03-09 04:14:59 +00:00
|
|
|
} // namespace HID
|
|
|
|
} // namespace Service
|