ns: move IFactoryResetInterface
This commit is contained in:
parent
44d2e90217
commit
8ea72cc99d
|
@ -745,6 +745,8 @@ add_library(core STATIC
|
||||||
hle/service/ns/application_version_interface.h
|
hle/service/ns/application_version_interface.h
|
||||||
hle/service/ns/ecommerce_interface.cpp
|
hle/service/ns/ecommerce_interface.cpp
|
||||||
hle/service/ns/ecommerce_interface.h
|
hle/service/ns/ecommerce_interface.h
|
||||||
|
hle/service/ns/factory_reset_interface.cpp
|
||||||
|
hle/service/ns/factory_reset_interface.h
|
||||||
hle/service/ns/language.cpp
|
hle/service/ns/language.cpp
|
||||||
hle/service/ns/language.h
|
hle/service/ns/language.h
|
||||||
hle/service/ns/ns_results.h
|
hle/service/ns/ns_results.h
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include "core/hle/service/ns/factory_reset_interface.h"
|
||||||
|
|
||||||
|
namespace Service::NS {
|
||||||
|
|
||||||
|
IFactoryResetInterface::IFactoryResetInterface(Core::System& system_)
|
||||||
|
: ServiceFramework{system_, "IFactoryResetInterface"} {
|
||||||
|
// clang-format off
|
||||||
|
static const FunctionInfo functions[] = {
|
||||||
|
{100, nullptr, "ResetToFactorySettings"},
|
||||||
|
{101, nullptr, "ResetToFactorySettingsWithoutUserSaveData"},
|
||||||
|
{102, nullptr, "ResetToFactorySettingsForRefurbishment"},
|
||||||
|
{103, nullptr, "ResetToFactorySettingsWithPlatformRegion"},
|
||||||
|
{104, nullptr, "ResetToFactorySettingsWithPlatformRegionAuthentication"},
|
||||||
|
{105, nullptr, "RequestResetToFactorySettingsSecurely"},
|
||||||
|
{106, nullptr, "RequestResetToFactorySettingsWithPlatformRegionAuthenticationSecurely"},
|
||||||
|
};
|
||||||
|
// clang-format on
|
||||||
|
|
||||||
|
RegisterHandlers(functions);
|
||||||
|
}
|
||||||
|
|
||||||
|
IFactoryResetInterface::~IFactoryResetInterface() = default;
|
||||||
|
|
||||||
|
} // namespace Service::NS
|
|
@ -0,0 +1,16 @@
|
||||||
|
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "core/hle/service/service.h"
|
||||||
|
|
||||||
|
namespace Service::NS {
|
||||||
|
|
||||||
|
class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> {
|
||||||
|
public:
|
||||||
|
explicit IFactoryResetInterface(Core::System& system_);
|
||||||
|
~IFactoryResetInterface() override;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Service::NS
|
|
@ -14,6 +14,7 @@
|
||||||
#include "core/hle/service/ns/account_proxy_interface.h"
|
#include "core/hle/service/ns/account_proxy_interface.h"
|
||||||
#include "core/hle/service/ns/application_version_interface.h"
|
#include "core/hle/service/ns/application_version_interface.h"
|
||||||
#include "core/hle/service/ns/ecommerce_interface.h"
|
#include "core/hle/service/ns/ecommerce_interface.h"
|
||||||
|
#include "core/hle/service/ns/factory_reset_interface.h"
|
||||||
#include "core/hle/service/ns/language.h"
|
#include "core/hle/service/ns/language.h"
|
||||||
#include "core/hle/service/ns/ns.h"
|
#include "core/hle/service/ns/ns.h"
|
||||||
#include "core/hle/service/ns/ns_results.h"
|
#include "core/hle/service/ns/ns_results.h"
|
||||||
|
@ -567,25 +568,6 @@ IDownloadTaskInterface::IDownloadTaskInterface(Core::System& system_)
|
||||||
|
|
||||||
IDownloadTaskInterface::~IDownloadTaskInterface() = default;
|
IDownloadTaskInterface::~IDownloadTaskInterface() = default;
|
||||||
|
|
||||||
IFactoryResetInterface::IFactoryResetInterface(Core::System& system_)
|
|
||||||
: ServiceFramework{system_, "IFactoryResetInterface"} {
|
|
||||||
// clang-format off
|
|
||||||
static const FunctionInfo functions[] = {
|
|
||||||
{100, nullptr, "ResetToFactorySettings"},
|
|
||||||
{101, nullptr, "ResetToFactorySettingsWithoutUserSaveData"},
|
|
||||||
{102, nullptr, "ResetToFactorySettingsForRefurbishment"},
|
|
||||||
{103, nullptr, "ResetToFactorySettingsWithPlatformRegion"},
|
|
||||||
{104, nullptr, "ResetToFactorySettingsWithPlatformRegionAuthentication"},
|
|
||||||
{105, nullptr, "RequestResetToFactorySettingsSecurely"},
|
|
||||||
{106, nullptr, "RequestResetToFactorySettingsWithPlatformRegionAuthenticationSecurely"},
|
|
||||||
};
|
|
||||||
// clang-format on
|
|
||||||
|
|
||||||
RegisterHandlers(functions);
|
|
||||||
}
|
|
||||||
|
|
||||||
IFactoryResetInterface::~IFactoryResetInterface() = default;
|
|
||||||
|
|
||||||
IReadOnlyApplicationRecordInterface::IReadOnlyApplicationRecordInterface(Core::System& system_)
|
IReadOnlyApplicationRecordInterface::IReadOnlyApplicationRecordInterface(Core::System& system_)
|
||||||
: ServiceFramework{system_, "IReadOnlyApplicationRecordInterface"} {
|
: ServiceFramework{system_, "IReadOnlyApplicationRecordInterface"} {
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
|
|
|
@ -58,12 +58,6 @@ public:
|
||||||
~IDownloadTaskInterface() override;
|
~IDownloadTaskInterface() override;
|
||||||
};
|
};
|
||||||
|
|
||||||
class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> {
|
|
||||||
public:
|
|
||||||
explicit IFactoryResetInterface(Core::System& system_);
|
|
||||||
~IFactoryResetInterface() override;
|
|
||||||
};
|
|
||||||
|
|
||||||
class IReadOnlyApplicationRecordInterface final
|
class IReadOnlyApplicationRecordInterface final
|
||||||
: public ServiceFramework<IReadOnlyApplicationRecordInterface> {
|
: public ServiceFramework<IReadOnlyApplicationRecordInterface> {
|
||||||
public:
|
public:
|
||||||
|
|
Reference in New Issue