| 95 | } |
| 96 | |
| 97 | void swkbdSetButton(SwkbdState* swkbd, SwkbdButton button, const char* text, bool submit) |
| 98 | { |
| 99 | swkbdConvertToUTF16(swkbd->button_text[button], text, SWKBD_MAX_BUTTON_TEXT_LEN); |
| 100 | swkbd->button_submits_text[button] = submit; |
| 101 | } |
| 102 | |
| 103 | void swkbdSetInitialText(SwkbdState* swkbd, const char* text) |
| 104 | { |
nothing calls this directly
no test coverage detected