bcat.cpp 483 B

12345678910111213141516
  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, const char* name)
  7. : Module::Interface(std::move(module), name) {
  8. static const FunctionInfo functions[] = {
  9. {0, &BCAT::CreateBcatService, "CreateBcatService"},
  10. };
  11. RegisterHandlers(functions);
  12. }
  13. } // namespace Service::BCAT