ALSA.fromLookup constructor

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

The symbols are looked up with lookup.

Implementation

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