pctl_a.h 407 B

1234567891011121314151617181920
  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/service.h"
  6. namespace Service::PCTL {
  7. class PCTL_A final : public ServiceFramework<PCTL_A> {
  8. public:
  9. PCTL_A();
  10. ~PCTL_A() = default;
  11. private:
  12. void CreateService(Kernel::HLERequestContext& ctx);
  13. };
  14. } // namespace Service::PCTL