am.h 388 B

12345678910111213141516
  1. // Copyright 2017 Citra Emulator Project
  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 {
  7. namespace AM {
  8. /// Registers all AM services with the specified service manager.
  9. void InstallInterfaces(SM::ServiceManager& service_manager);
  10. } // namespace AM
  11. } // namespace Service