snd_dlsym method

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

Implementation

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