pctl.h 487 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. #pragma once
  5. #include "core/hle/service/pctl/module.h"
  6. namespace Core {
  7. class System;
  8. }
  9. namespace Service::PCTL {
  10. class PCTL final : public Module::Interface {
  11. public:
  12. explicit PCTL(Core::System& system_, std::shared_ptr<Module> module_, const char* name,
  13. Capability capability);
  14. ~PCTL() override;
  15. };
  16. } // namespace Service::PCTL