aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/nim_u.h
diff options
context:
space:
mode:
authorGravatar purpasmart96 <kanzoconfigz@hotmail.com>2015-03-07 17:54:16 -0800
committerGravatar purpasmart96 <kanzoconfigz@hotmail.com>2015-04-02 20:05:11 -0700
commit198c0ddc72d59f8e288c1074ee0bb1169f706cac (patch)
tree5ecee1d8a979d0e7aeed4de12ae85ed935d31932 /src/core/hle/service/nim_u.h
parent03ceb7adf978693728eaae42d4cc8ccb9ff6913b (diff)
Services: Stubs and minor changes
Diffstat (limited to 'src/core/hle/service/nim_u.h')
-rw-r--r--src/core/hle/service/nim_u.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/nim_u.h b/src/core/hle/service/nim_u.h
new file mode 100644
index 00000000..57a1f6ac
--- /dev/null
+++ b/src/core/hle/service/nim_u.h
@@ -0,0 +1,23 @@
+// Copyright 2015 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 NIM_U
+
+namespace NIM_U {
+
+class Interface : public Service::Interface {
+public:
+ Interface();
+
+ std::string GetPortName() const override {
+ return "nim:u";
+ }
+};
+
+} // namespace