snd_shm_area_create method

Pointer<snd_shm_area> snd_shm_area_create(
  1. int shmid,
  2. Pointer<Void> ptr
)

Implementation

ffi.Pointer<snd_shm_area> snd_shm_area_create(
  int shmid,
  ffi.Pointer<ffi.Void> ptr,
) {
  return _snd_shm_area_create(
    shmid,
    ptr,
  );
}