summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ncm/ncm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-27 23:32:45 +0200
committerLioncash <mathew1800@gmail.com>2018-07-27 23:38:30 +0200
commit7931cc0ceb744ff03cce0affeb5535d1766e95d2 (patch)
tree74cf5161dab18a86eedc105542ecb55f8192ed4a /src/core/hle/service/ncm/ncm.cpp
parentMerge pull request #845 from lioncash/nfc (diff)
downloadyuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.gz
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.bz2
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.lz
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.xz
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.zst
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.zip
Diffstat (limited to 'src/core/hle/service/ncm/ncm.cpp')
-rw-r--r--src/core/hle/service/ncm/ncm.cpp59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/core/hle/service/ncm/ncm.cpp b/src/core/hle/service/ncm/ncm.cpp
new file mode 100644
index 000000000..0297edca0
--- /dev/null
+++ b/src/core/hle/service/ncm/ncm.cpp
@@ -0,0 +1,59 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include <memory>
+
+#include "core/hle/service/ncm/ncm.h"
+#include "core/hle/service/service.h"
+#include "core/hle/service/sm/sm.h"
+
+namespace Service::NCM {
+
+class LocationResolver final : public ServiceFramework<LocationResolver> {
+public:
+ explicit LocationResolver() : ServiceFramework{"lr"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "OpenLocationResolver"},
+ {1, nullptr, "OpenRegisteredLocationResolver"},
+ {2, nullptr, "RefreshLocationResolver"},
+ {3, nullptr, "OpenAddOnContentLocationResolver"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+class NCM final : public ServiceFramework<NCM> {
+public:
+ explicit NCM() : ServiceFramework{"ncm"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "CreateContentStorage"},
+ {1, nullptr, "CreateContentMetaDatabase"},
+ {2, nullptr, "VerifyContentStorage"},
+ {3, nullptr, "VerifyContentMetaDatabase"},
+ {4, nullptr, "OpenContentStorage"},
+ {5, nullptr, "OpenContentMetaDatabase"},
+ {6, nullptr, "CloseContentStorageForcibly"},
+ {7, nullptr, "CloseContentMetaDatabaseForcibly"},
+ {8, nullptr, "CleanupContentMetaDatabase"},
+ {9, nullptr, "OpenContentStorage2"},
+ {10, nullptr, "CloseContentStorage"},
+ {11, nullptr, "OpenContentMetaDatabase2"},
+ {12, nullptr, "CloseContentMetaDatabase"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+void InstallInterfaces(SM::ServiceManager& sm) {
+ std::make_shared<LocationResolver>()->InstallAsService(sm);
+ std::make_shared<NCM>()->InstallAsService(sm);
+}
+
+} // namespace Service::NCM