arp.h 359 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::ARP {
  9. /// Registers all ARP services with the specified service manager.
  10. void InstallInterfaces(SM::ServiceManager& sm);
  11. } // namespace Service::ARP