summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ndm.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-30 06:24:04 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-30 06:24:04 +0200
commit55325dea4c85e1a91c6d37282322b466ef40ffac (patch)
treea9e15f4f150a7ddd596cd41a5c54f4a664101916 /src/core/hle/service/ndm.h
parentservice: cleaned up log messages (diff)
downloadyuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.tar
yuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.tar.gz
yuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.tar.bz2
yuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.tar.lz
yuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.tar.xz
yuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.tar.zst
yuzu-55325dea4c85e1a91c6d37282322b466ef40ffac.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ndm.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/core/hle/service/ndm.h b/src/core/hle/service/ndm.h
new file mode 100644
index 000000000..fbe88fb8f
--- /dev/null
+++ b/src/core/hle/service/ndm.h
@@ -0,0 +1,33 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace NDM
+
+// No idea what this is
+
+namespace NDM_U {
+
+class Interface : public Service::Interface {
+public:
+
+ Interface();
+
+ ~Interface();
+
+ /**
+ * Gets the string port name used by CTROS for the service
+ * @return Port name of service
+ */
+ const char *GetPortName() const {
+ return "ndm:u";
+ }
+
+};
+
+} // namespace