aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/ldr_ro.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-12-14 22:49:33 -0800
committerGravatar archshift <admin@archshift.com>2014-12-15 15:32:42 -0800
commit6117fad03604dca573b5b19ebbb571a28df89421 (patch)
tree0ad72b604d37f002feb5a10ee5aa1e58dc777b03 /src/core/hle/service/ldr_ro.h
parent6b51683bb1e8772260a51a1bbf029fce773ecad8 (diff)
Added stub for ldr:ro service...
Diffstat (limited to 'src/core/hle/service/ldr_ro.h')
-rw-r--r--src/core/hle/service/ldr_ro.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/hle/service/ldr_ro.h b/src/core/hle/service/ldr_ro.h
new file mode 100644
index 00000000..32d7c29c
--- /dev/null
+++ b/src/core/hle/service/ldr_ro.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 LDR_RO
+
+namespace LDR_RO {
+
+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 "ldr:ro";
+ }
+};
+
+} // namespace