lsl_get_fullinfo function
Retrieve the complete information of the given stream, including the extended description.
Can be invoked at any time of the stream's lifetime.
@param in The lsl_inlet object to act on.
@param timeout Timeout of the operation. Use LSL_FOREVER to effectively disable it.
@paramout
ec Error code: if nonzero, can be either lsl_timeout_error (if the timeout has
expired) or #lsl_lost_error (if the stream source has been lost).
@return A copy of the full streaminfo of the inlet or NULL in the event that an error happened.
@note It is the user's responsibility to destroy it when it is no longer needed.
Implementation
@ffi.Native<NativeLsl_get_fullinfo>()
external lsl_streaminfo lsl_get_fullinfo(
lsl_inlet in$,
double timeout,
ffi.Pointer<ffi.Int32> ec,
);