hid.h 455 B

12345678910111213141516171819
  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 SM {
  6. class ServiceManager;
  7. }
  8. namespace Service::HID {
  9. /// Reload input devices. Used when input configuration changed
  10. void ReloadInputDevices();
  11. /// Registers all HID services with the specified service manager.
  12. void InstallInterfaces(SM::ServiceManager& service_manager);
  13. } // namespace Service::HID