| 28 | #include "backupsize.hpp" |
| 29 | |
| 30 | KeyboardManager::KeyboardManager(void) |
| 31 | { |
| 32 | systemKeyboardAvailable = false; |
| 33 | if (appletGetAppletType() == AppletType_Application) { |
| 34 | SwkbdConfig kbd; |
| 35 | res = swkbdCreate(&kbd, 0); |
| 36 | if (R_SUCCEEDED(res)) { |
| 37 | systemKeyboardAvailable = true; |
| 38 | swkbdClose(&kbd); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | std::pair<bool, std::string> KeyboardManager::keyboard(const std::string& suggestion) |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected