diff options
Diffstat (limited to 'src/input_common/sdl/sdl.h')
| -rw-r--r-- | src/input_common/sdl/sdl.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/input_common/sdl/sdl.h b/src/input_common/sdl/sdl.h new file mode 100644 index 000000000..3e72debcc --- /dev/null +++ b/src/input_common/sdl/sdl.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | // Copyright 2017 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "core/frontend/input.h" | ||
| 8 | |||
| 9 | namespace InputCommon { | ||
| 10 | namespace SDL { | ||
| 11 | |||
| 12 | /// Initializes and registers SDL device factories | ||
| 13 | void Init(); | ||
| 14 | |||
| 15 | /// Unresisters SDL device factories and shut them down. | ||
| 16 | void Shutdown(); | ||
| 17 | |||
| 18 | } // namespace SDL | ||
| 19 | } // namespace InputCommon | ||