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