|
|
@@ -0,0 +1,28 @@
|
|
|
+// Copyright 2018 yuzu emulator team
|
|
|
+// Licensed under GPLv2 or any later version
|
|
|
+// Refer to the license.txt file included.
|
|
|
+
|
|
|
+#include "common/logging/log.h"
|
|
|
+#include "core/hle/ipc_helpers.h"
|
|
|
+#include "core/hle/service/nfp/nfp.h"
|
|
|
+#include "core/hle/service/nfp/nfp_user.h"
|
|
|
+
|
|
|
+namespace Service {
|
|
|
+namespace NFP {
|
|
|
+
|
|
|
+Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
|
|
|
+ : ServiceFramework(name), module(std::move(module)) {}
|
|
|
+
|
|
|
+void Module::Interface::Unknown(Kernel::HLERequestContext& ctx) {
|
|
|
+ LOG_WARNING(Service_NFP, "(STUBBED) called");
|
|
|
+ IPC::ResponseBuilder rb{ctx, 2};
|
|
|
+ rb.Push(RESULT_SUCCESS);
|
|
|
+}
|
|
|
+
|
|
|
+void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
+ auto module = std::make_shared<Module>();
|
|
|
+ std::make_shared<NFP_User>(module)->InstallAsService(service_manager);
|
|
|
+}
|
|
|
+
|
|
|
+} // namespace NFP
|
|
|
+} // namespace Service
|