summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nim_aoc.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-12-15 07:55:51 +0100
committerarchshift <admin@archshift.com>2014-12-16 00:32:42 +0100
commit89eef9eb6db81da44922b0968ea6705412b12ca6 (patch)
tree275376c926139351991298d165d045e00133b37c /src/core/hle/service/nim_aoc.h
parentAdded stub for cecd:u service... (diff)
downloadyuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.tar
yuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.tar.gz
yuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.tar.bz2
yuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.tar.lz
yuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.tar.xz
yuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.tar.zst
yuzu-89eef9eb6db81da44922b0968ea6705412b12ca6.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nim_aoc.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/hle/service/nim_aoc.h b/src/core/hle/service/nim_aoc.h
new file mode 100644
index 000000000..2cc673118
--- /dev/null
+++ b/src/core/hle/service/nim_aoc.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 NIM_AOC
+
+namespace NIM_AOC {
+
+class Interface : public Service::Interface {
+public:
+ Interface();
+
+ /**
+ * Gets the string port name used by CTROS for the service
+ * @return Port name of service
+ */
+ std::string GetPortName() const override {
+ return "nim:aoc";
+ }
+};
+
+} // namespace