pctl.cpp 561 B

1234567891011121314151617
  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/pctl/pctl.h"
  5. namespace Service::PCTL {
  6. PCTL::PCTL(std::shared_ptr<Module> module, const char* name)
  7. : Module::Interface(std::move(module), name) {
  8. static const FunctionInfo functions[] = {
  9. {0, &PCTL::CreateService, "CreateService"},
  10. {1, &PCTL::CreateServiceWithoutInitialize, "CreateServiceWithoutInitialize"},
  11. };
  12. RegisterHandlers(functions);
  13. }
  14. } // namespace Service::PCTL