sdlStopTextInput function

void sdlStopTextInput()

Stop receiving any text input events.

\since This function is available since SDL 2.0.0.

\sa SDL_StartTextInput

extern DECLSPEC void SDLCALL SDL_StopTextInput(void)

Implementation

void sdlStopTextInput() {
  final sdlStopTextInputLookupFunction = libSdl2
      .lookupFunction<Void Function(), void Function()>('SDL_StopTextInput');
  return sdlStopTextInputLookupFunction();
}