2020-12-28 19:15:37 +04:00
|
|
|
// 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 {
|
|
|
|
|
2021-05-05 12:10:21 +04:00
|
|
|
BCAT::BCAT(Core::System& system_, std::shared_ptr<Module> module_,
|
|
|
|
FileSystem::FileSystemController& fsc_, const char* name_)
|
|
|
|
: Interface(system_, std::move(module_), fsc_, name_) {
|
2020-12-28 19:15:37 +04:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &BCAT::CreateBcatService, "CreateBcatService"},
|
|
|
|
{1, &BCAT::CreateDeliveryCacheStorageService, "CreateDeliveryCacheStorageService"},
|
|
|
|
{2, &BCAT::CreateDeliveryCacheStorageServiceWithApplicationId, "CreateDeliveryCacheStorageServiceWithApplicationId"},
|
|
|
|
{3, nullptr, "CreateDeliveryCacheProgressService"},
|
|
|
|
{4, nullptr, "CreateDeliveryCacheProgressServiceWithApplicationId"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
BCAT::~BCAT() = default;
|
|
|
|
} // namespace Service::BCAT
|