diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-04-28 18:51:18 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-30 17:23:26 -0400 |
| commit | 78d146f907cbab60026f972e1be7cc8eb83e05bb (patch) | |
| tree | 12c4190b1da9c2b9ca56a5a7eac3a654d8f6c23c /src/core/hle/service/bcat/bcat.cpp | |
| parent | 68658a8385b74454c8523efe95ceb81b34bb8812 (diff) | |
bcat: Add commands to create IDeliveryCacheStorageService
Used to access contents of download.
Diffstat (limited to 'src/core/hle/service/bcat/bcat.cpp')
| -rw-r--r-- | src/core/hle/service/bcat/bcat.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/bcat/bcat.cpp b/src/core/hle/service/bcat/bcat.cpp index 179aa4949..391f599ee 100644 --- a/src/core/hle/service/bcat/bcat.cpp +++ b/src/core/hle/service/bcat/bcat.cpp @@ -8,9 +8,13 @@ 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); } |
