summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg/cfg_i.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2014-12-21 22:36:18 +0100
committerSubv <subv2112@gmail.com>2014-12-21 22:41:06 +0100
commit6115f013a9df6faf66c9799ab25ecb106182b8c2 (patch)
tree657e9b7ff1830ffc1568c46da4a89debf1e21933 /src/core/hle/service/cfg/cfg_i.h
parentCFGU: Some changes (diff)
downloadyuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.gz
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.bz2
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.lz
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.xz
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.zst
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.zip
Diffstat (limited to 'src/core/hle/service/cfg/cfg_i.h')
-rw-r--r--src/core/hle/service/cfg/cfg_i.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/hle/service/cfg/cfg_i.h b/src/core/hle/service/cfg/cfg_i.h
new file mode 100644
index 000000000..577aad236
--- /dev/null
+++ b/src/core/hle/service/cfg/cfg_i.h
@@ -0,0 +1,27 @@
+// 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 CFG_I
+
+namespace CFG_I {
+
+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 override {
+ return "cfg:i";
+ }
+};
+
+} // namespace