aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/xcd.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-26 08:50:32 -0400
committerLioncash <mathew1800@gmail.com>2018-07-26 15:05:42 -0400
commit7550c2c86686ee19c8706580694bf08c3beb9746 (patch)
treec637aad758414c3eafd747ed0f2c67ff5cf1d081 /src/core/hle/service/hid/xcd.h
parent82cb5f030d8d9c8903fdd20ec984836b36ec6f3d (diff)
service/hid: Add the xcd:sys service
Diffstat (limited to 'src/core/hle/service/hid/xcd.h')
-rw-r--r--src/core/hle/service/hid/xcd.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/xcd.h b/src/core/hle/service/hid/xcd.h
new file mode 100644
index 000000000..232a044df
--- /dev/null
+++ b/src/core/hle/service/hid/xcd.h
@@ -0,0 +1,16 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::HID {
+
+class XCD_SYS final : public ServiceFramework<XCD_SYS> {
+public:
+ explicit XCD_SYS();
+};
+
+} // namespace Service::HID