bcat.cpp 996 B

12345678910111213141516171819202122232425
  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(Core::System& system_, std::shared_ptr<Module> module_,
  7. FileSystem::FileSystemController& fsc_, const char* name_)
  8. : Interface(system_, std::move(module_), fsc_, name_) {
  9. // clang-format off
  10. static const FunctionInfo functions[] = {
  11. {0, &BCAT::CreateBcatService, "CreateBcatService"},
  12. {1, &BCAT::CreateDeliveryCacheStorageService, "CreateDeliveryCacheStorageService"},
  13. {2, &BCAT::CreateDeliveryCacheStorageServiceWithApplicationId, "CreateDeliveryCacheStorageServiceWithApplicationId"},
  14. {3, nullptr, "CreateDeliveryCacheProgressService"},
  15. {4, nullptr, "CreateDeliveryCacheProgressServiceWithApplicationId"},
  16. };
  17. // clang-format on
  18. RegisterHandlers(functions);
  19. }
  20. BCAT::~BCAT() = default;
  21. } // namespace Service::BCAT