mirror of
https://github.com/starr-dusT/yuzu-mainline
synced 2024-03-05 21:12:25 -08:00
78d146f907
Used to access contents of download.
23 lines
774 B
C++
23 lines
774 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(std::shared_ptr<Module> module, const char* name)
|
|
: Module::Interface(std::move(module), 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
|