aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/act_u.h
diff options
context:
space:
mode:
authorGravatar purpasmart96 <kanzoconfigz@hotmail.com>2014-12-21 11:52:10 -0800
committerGravatar purpasmart96 <kanzoconfigz@hotmail.com>2014-12-25 19:08:33 -0800
commit9796bc1fa2518ca4780ce63a543444ce5f8a28e4 (patch)
tree3f92a6046e9c44b120297095d90fc8eb970ccd54 /src/core/hle/service/act_u.h
parentae76469373a867ff4b50710ea1a91d2148484d17 (diff)
More services & small clean ups
Diffstat (limited to 'src/core/hle/service/act_u.h')
-rw-r--r--src/core/hle/service/act_u.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/act_u.h b/src/core/hle/service/act_u.h
new file mode 100644
index 00000000..be41454a
--- /dev/null
+++ b/src/core/hle/service/act_u.h
@@ -0,0 +1,23 @@
+// 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 ACT_U
+
+namespace ACT_U {
+
+class Interface : public Service::Interface {
+public:
+ Interface();
+
+ std::string GetPortName() const override {
+ return "act:u";
+ }
+};
+
+} // namespace