apm.h 403 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. namespace Core {
  6. class System;
  7. }
  8. namespace Service::APM {
  9. class Module final {
  10. public:
  11. Module();
  12. ~Module();
  13. };
  14. /// Registers all AM services with the specified service manager.
  15. void InstallInterfaces(Core::System& system);
  16. } // namespace Service::APM