lsl_destroy_string function

  1. @Native<NativeLsl_destroy_string>()
void lsl_destroy_string(
  1. Pointer<Char> s
)

Deallocate a string that has been transferred to the application.

Rarely used: the only use case is to deallocate the contents of string-valued samples received from LSL in an application where no free() method is available (e.g., in some scripting languages).

Implementation

@ffi.Native<NativeLsl_destroy_string>()
external void lsl_destroy_string(ffi.Pointer<ffi.Char> s);