snd_dlsym method

Pointer<Void> snd_dlsym(
  1. Pointer<Void> handle,
  2. Pointer<Int8> name,
  3. Pointer<Int8> version
)

Implementation

ffi.Pointer<ffi.Void> snd_dlsym(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Int8> name,
  ffi.Pointer<ffi.Int8> version,
) {
  return _snd_dlsym(
    handle,
    name,
    version,
  );
}