sdlHasScreenKeyboardSupport function

bool sdlHasScreenKeyboardSupport()

Check whether the platform has screen keyboard support.

\returns SDL_TRUE if the platform has some screen keyboard support or SDL_FALSE if not.

\since This function is available since SDL 2.0.0.

\sa SDL_StartTextInput \sa SDL_IsScreenKeyboardShown

extern DECLSPEC SDL_bool SDLCALL SDL_HasScreenKeyboardSupport(void)

Implementation

bool sdlHasScreenKeyboardSupport() {
  final sdlHasScreenKeyboardSupportLookupFunction =
      libSdl2.lookupFunction<Int32 Function(), int Function()>(
          'SDL_HasScreenKeyboardSupport');
  return sdlHasScreenKeyboardSupportLookupFunction() == 1;
}