bcat.cpp 818 B

12345678910111213141516171819202122
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/bcat/bcat.h"
  5. namespace Service::BCAT {
  6. BCAT::BCAT(std::shared_ptr<Module> module, FileSystem::FileSystemController& fsc, const char* name)
  7. : Module::Interface(std::move(module), fsc, name) {
  8. // clang-format off
  9. static const FunctionInfo functions[] = {
  10. {0, &BCAT::CreateBcatService, "CreateBcatService"},
  11. {1, &BCAT::CreateDeliveryCacheStorageService, "CreateDeliveryCacheStorageService"},
  12. {2, &BCAT::CreateDeliveryCacheStorageServiceWithApplicationId, "CreateDeliveryCacheStorageServiceWithApplicationId"},
  13. };
  14. // clang-format on
  15. RegisterHandlers(functions);
  16. }
  17. BCAT::~BCAT() = default;
  18. } // namespace Service::BCAT