pm.h 369 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. #pragma once
  5. namespace Service::SM {
  6. class ServiceManager;
  7. }
  8. namespace Service::PM {
  9. /// Registers all PM services with the specified service manager.
  10. void InstallInterfaces(SM::ServiceManager& service_manager);
  11. } // namespace Service::PM