Api.fromLookup constructor

Api.fromLookup(
  1. Pointer<T> lookup<T extends NativeType>(
    1. String symbolName
    )
)

The symbols are looked up with lookup.

Implementation

Api.fromLookup(
  ffi.Pointer<T> Function<T extends ffi.NativeType>(String symbolName) lookup,
) : _lookup = lookup;