sdl.h 405 B

12345678910111213141516171819
  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/frontend/input.h"
  6. namespace InputCommon {
  7. namespace SDL {
  8. /// Initializes and registers SDL device factories
  9. void Init();
  10. /// Unresisters SDL device factories and shut them down.
  11. void Shutdown();
  12. } // namespace SDL
  13. } // namespace InputCommon