lsl_push_sample_buf function

  1. @Native<NativeLsl_push_sample_buf>()
int lsl_push_sample_buf(
  1. lsl_outlet out,
  2. Pointer<Pointer<Char>> data,
  3. Pointer<Uint32> lengths
)

@copybrief lsl_push_sample_ftp @see lsl_push_sample_ftp @param out The lsl_outlet object through which to push the data. @param data A pointer to values to push. The number of values pointed to must be no less than the number of channels in the sample. @param lengths A pointer the number of elements to push for each channel (string lengths).

Implementation

@ffi.Native<NativeLsl_push_sample_buf>()
external int lsl_push_sample_buf(
  lsl_outlet out,
  ffi.Pointer<ffi.Pointer<ffi.Char>> data,
  ffi.Pointer<ffi.Uint32> lengths,
);