summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nwm/nwm_inf.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2016-12-22 09:06:27 +0100
committermailwl <mailwl@gmail.com>2016-12-22 20:51:27 +0100
commit069a88dad7d198933681d9504ab37c7d9b57c8dd (patch)
tree876176b37939e786257e802f193739ade73dbea2 /src/core/hle/service/nwm/nwm_inf.h
parentMerge pull request #2366 from MerryMage/MemoryReadCode (diff)
downloadyuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.tar
yuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.tar.gz
yuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.tar.bz2
yuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.tar.lz
yuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.tar.xz
yuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.tar.zst
yuzu-069a88dad7d198933681d9504ab37c7d9b57c8dd.zip
Diffstat (limited to 'src/core/hle/service/nwm/nwm_inf.h')
-rw-r--r--src/core/hle/service/nwm/nwm_inf.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/nwm/nwm_inf.h b/src/core/hle/service/nwm/nwm_inf.h
new file mode 100644
index 000000000..0043d769c
--- /dev/null
+++ b/src/core/hle/service/nwm/nwm_inf.h
@@ -0,0 +1,22 @@
+// Copyright 2016 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 NWM {
+
+class NWM_INF final : public Interface {
+public:
+ NWM_INF();
+
+ std::string GetPortName() const override {
+ return "nwm::INF";
+ }
+};
+
+} // namespace NWM
+} // namespace Service