2018-05-28 16:36:38 +03: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 {
|
|
|
|
|
|
2019-10-06 13:02:23 -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) {
|
2019-04-28 18:51:18 -04:00
|
|
|
// clang-format off
|
2018-05-28 16:36:38 +03:00
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
|
{0, &BCAT::CreateBcatService, "CreateBcatService"},
|
2019-04-28 18:51:18 -04:00
|
|
|
{1, &BCAT::CreateDeliveryCacheStorageService, "CreateDeliveryCacheStorageService"},
|
|
|
|
|
{2, &BCAT::CreateDeliveryCacheStorageServiceWithApplicationId, "CreateDeliveryCacheStorageServiceWithApplicationId"},
|
2018-05-28 16:36:38 +03:00
|
|
|
};
|
2019-04-28 18:51:18 -04:00
|
|
|
// clang-format on
|
2018-05-28 16:36:38 +03:00
|
|
|
RegisterHandlers(functions);
|
|
|
|
|
}
|
2018-09-10 21:20:52 -04:00
|
|
|
|
|
|
|
|
BCAT::~BCAT() = default;
|
2018-05-28 16:36:38 +03:00
|
|
|
} // namespace Service::BCAT
|