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