lsl_push_sample_f function
Push a pointer to some values as a sample into the outlet. Handles type checking & conversion. @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. #lsl_local_clock(); if omitted, the current time is used. @return Error code of the operation or lsl_no_error if successful (usually attributed to the wrong data type). @{
Implementation
@ffi.Native<NativeLsl_push_sample_f>()
external int lsl_push_sample_f(lsl_outlet out, ffi.Pointer<ffi.Float> data);