sdlResetHint function

bool sdlResetHint(
  1. String? name
)

Reset a hint to the default value.

This will reset a hint to the value of the environment variable, or NULL if the environment isn't set. Callbacks will be called normally with this change.

\param name the hint to set \returns SDL_TRUE if the hint was set, SDL_FALSE otherwise.

\since This function is available since SDL 2.24.0.

\sa SDL_GetHint \sa SDL_SetHint

extern DECLSPEC SDL_bool SDLCALL SDL_ResetHint(const char *name)

Implementation

bool sdlResetHint(String? name) {
  final sdlResetHintLookupFunction = libSdl2.lookupFunction<
      Int32 Function(Pointer<Utf8> name),
      int Function(Pointer<Utf8> name)>('SDL_ResetHint');
  final namePointer = name != null ? name.toNativeUtf8() : nullptr;
  final result = sdlResetHintLookupFunction(namePointer) == 1;
  calloc.free(namePointer);
  return result;
}