aimuxFreeString top-level property

void Function(Pointer<Utf8>) aimuxFreeString
final

aimux_free_string — frees engine-allocated strings, including err->message. Lazily initialized so pure-Dart tests that never produce a native message do not dlopen the library.

Implementation

final void Function(Pointer<Utf8>) aimuxFreeString = openAimuxLibrary()
    .lookupFunction<Void Function(Pointer<Utf8>), void Function(Pointer<Utf8>)>(
        'aimux_free_string');