summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/frd_u.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-11-11 07:41:17 +0100
committerarchshift <admin@archshift.com>2014-11-11 07:43:45 +0100
commit37e582c395afafecb3217c2ce640a67e5e469864 (patch)
treebc092b2ef5ce773a7d28d042baa8c536da4deffd /src/core/hle/service/frd_u.h
parentMerge pull request #169 from archshift/autoplay (diff)
downloadyuzu-37e582c395afafecb3217c2ce640a67e5e469864.tar
yuzu-37e582c395afafecb3217c2ce640a67e5e469864.tar.gz
yuzu-37e582c395afafecb3217c2ce640a67e5e469864.tar.bz2
yuzu-37e582c395afafecb3217c2ce640a67e5e469864.tar.lz
yuzu-37e582c395afafecb3217c2ce640a67e5e469864.tar.xz
yuzu-37e582c395afafecb3217c2ce640a67e5e469864.tar.zst
yuzu-37e582c395afafecb3217c2ce640a67e5e469864.zip
Diffstat (limited to 'src/core/hle/service/frd_u.h')
-rw-r--r--src/core/hle/service/frd_u.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/hle/service/frd_u.h b/src/core/hle/service/frd_u.h
new file mode 100644
index 000000000..9df8a815a
--- /dev/null
+++ b/src/core/hle/service/frd_u.h
@@ -0,0 +1,27 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace FRD_U
+
+namespace FRD_U {
+
+ class Interface : public Service::Interface {
+ public:
+ Interface();
+ ~Interface();
+ /**
+ * Gets the string port name used by CTROS for the service
+ * @return Port name of service
+ */
+ std::string GetPortName() const {
+ return "frd:u";
+ }
+ };
+
+} // namespace