aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/y2r_u.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2015-01-02 15:03:40 -0300
committerGravatar archshift <admin@archshift.com>2015-01-03 16:42:39 -0300
commit48130b1eaa3a45b95f141cefc36d7b0fdc0f45bb (patch)
treeb6dcefeeb79aad677e05e80ee227ef02d5d55d49 /src/core/hle/service/y2r_u.h
parent092a67cefbe5aa178b5f9b832fe274bce67f4d10 (diff)
Stub the y2r:u service
Diffstat (limited to 'src/core/hle/service/y2r_u.h')
-rw-r--r--src/core/hle/service/y2r_u.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/y2r_u.h b/src/core/hle/service/y2r_u.h
new file mode 100644
index 00000000..171aecfd
--- /dev/null
+++ b/src/core/hle/service/y2r_u.h
@@ -0,0 +1,23 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace Y2R_U
+
+namespace Y2R_U {
+
+class Interface : public Service::Interface {
+public:
+ Interface();
+
+ std::string GetPortName() const override {
+ return "y2r:u";
+ }
+};
+
+} // namespace