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