sdlGetRevision function

String? sdlGetRevision()

Get the code revision of SDL that is linked against your program.

This value is the revision of the code you are linked with and may be different from the code you are compiling with, which is found in the constant SDL_REVISION.

The revision is arbitrary string (a hash value) uniquely identifying the exact revision of the SDL library in use, and is only useful in comparing against other revisions. It is NOT an incrementing number.

If SDL wasn't built from a git repository with the appropriate tools, this will return an empty string.

Prior to SDL 2.0.16, before development moved to GitHub, this returned a hash for a Mercurial repository.

You shouldn't use this function for anything but logging it for debugging purposes. The string is not intended to be reliable in any way.

\returns an arbitrary string, uniquely identifying the exact revision of the SDL library in use.

\since This function is available since SDL 2.0.0.

\sa SDL_GetVersion

extern DECLSPEC const char *SDLCALL SDL_GetRevision(void)

Implementation

String? sdlGetRevision() {
  final sdlGetRevisionLookupFunction = libSdl2.lookupFunction<
      Pointer<Utf8> Function(), Pointer<Utf8> Function()>('SDL_GetRevision');
  final result = sdlGetRevisionLookupFunction();
  if (result == nullptr) {
    return null;
  }
  return result.toDartString();
}