getVersionEx static method
Retrieves the library version as a structure.
return The version. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
static LibVersion getVersionEx() {
Pointer<id3BiosealLibVersion> pVersion = calloc();
var err = biosealSDK.id3BiosealLibrary_GetVersionEx(pVersion);
if (err != BiosealError.success.value) {
calloc.free(pVersion);
throw BiosealException(err);
}
return LibVersion(pVersion);
}