fltkApiVersion

fnint fltkApiVersion() nothrow @nogc @trusted

Gets the FLTK API version.

Returns

API version as integer (e.g., 10304 for version 1.3.4)

Example:

auto api = fltkApiVersion();
if (api >= 10304) {
   // Use features from FLTK 1.3.4+
}