aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/err_f.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-11-01 20:06:13 -0700
committerGravatar archshift <admin@archshift.com>2014-11-01 20:07:59 -0700
commitc22923f8c4bd86f28f38b005b03bd51bf3bfc90d (patch)
treeba199d89d2325d52d6295be9ef6cddc22efe325b /src/core/hle/service/err_f.h
parent6e6947118b60f6d19da0567b4cb72e1492c09775 (diff)
Added stub err:f service.
Diffstat (limited to 'src/core/hle/service/err_f.h')
-rw-r--r--src/core/hle/service/err_f.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/hle/service/err_f.h b/src/core/hle/service/err_f.h
new file mode 100644
index 00000000..5da66326
--- /dev/null
+++ b/src/core/hle/service/err_f.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 ERR_F
+
+namespace ERR_F {
+
+ 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 "err:f";
+ }
+ };
+
+} // namespace