sdlGdkSuspendComplete function

void sdlGdkSuspendComplete()

Callback from the application to let the suspend continue.

\since This function is available since SDL 2.28.0.

extern DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void)

Implementation

void sdlGdkSuspendComplete() {
  final sdlGdkSuspendCompleteLookupFunction =
      libSdl2.lookupFunction<Void Function(), void Function()>(
          'SDL_GDKSuspendComplete');
  return sdlGdkSuspendCompleteLookupFunction();
}