mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-05 22:42:46 +01:00
69f16ba50e
Migrates the HLE service code off the use of directly accessing the global system instance where trivially able to do so. This removes all usages of Core::CurrentProcess from the service code, only 8 occurrences of this function exist elsewhere. There's still quite a bit of "System::GetInstance()" being used, however this was able to replace a few instances.
23 lines
851 B
C++
23 lines
851 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/service/bcat/bcat.h"
|
|
|
|
namespace Service::BCAT {
|
|
|
|
BCAT::BCAT(Core::System& system, std::shared_ptr<Module> module,
|
|
FileSystem::FileSystemController& fsc, const char* name)
|
|
: Interface(system, std::move(module), fsc, name) {
|
|
// clang-format off
|
|
static const FunctionInfo functions[] = {
|
|
{0, &BCAT::CreateBcatService, "CreateBcatService"},
|
|
{1, &BCAT::CreateDeliveryCacheStorageService, "CreateDeliveryCacheStorageService"},
|
|
{2, &BCAT::CreateDeliveryCacheStorageServiceWithApplicationId, "CreateDeliveryCacheStorageServiceWithApplicationId"},
|
|
};
|
|
// clang-format on
|
|
RegisterHandlers(functions);
|
|
}
|
|
|
|
BCAT::~BCAT() = default;
|
|
} // namespace Service::BCAT
|