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