ir.h 414 B

1234567891011121314151617181920212223
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. namespace Service {
  6. class Interface;
  7. namespace IR {
  8. /// Initialize IR service
  9. void Init();
  10. /// Shutdown IR service
  11. void Shutdown();
  12. /// Reload input devices. Used when input configuration changed
  13. void ReloadInputDevices();
  14. } // namespace IR
  15. } // namespace Service