aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ndm/ndm_u.h
diff options
context:
space:
mode:
authorJamePeng <jame_peng@sina.com>2016-02-14 19:53:32 +0800
committerJamePeng <jame_peng@sina.com>2016-03-15 00:42:47 +0800
commitdd0b8047eb8985ff398fd6e5e4fa11d1ea111e23 (patch)
tree091058af51d0edc57650bd72b2dca54b0703fde2 /src/core/hle/service/ndm/ndm_u.h
parenta2024d749790f94979ad1f7a02363ab53f7de518 (diff)
Reorganize the ndm service path for dummy implement function
SuspendDaemons , ResumeDaemons , OverrideDefaultDaemons The NDM file move to /core/hle/service/ndm/ now!
Diffstat (limited to 'src/core/hle/service/ndm/ndm_u.h')
-rw-r--r--src/core/hle/service/ndm/ndm_u.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/ndm/ndm_u.h b/src/core/hle/service/ndm/ndm_u.h
new file mode 100644
index 000000000..d567abc84
--- /dev/null
+++ b/src/core/hle/service/ndm/ndm_u.h
@@ -0,0 +1,22 @@
+// 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 Service {
+namespace NDM {
+
+class NDM_U_Interface : public Service::Interface {
+public:
+ NDM_U_Interface();
+
+ std::string GetPortName() const override {
+ return "ndm:u";
+ }
+};
+
+} // namespace NDM
+} // namespace Service