compileCsdTextSync method

  1. @override
int compileCsdTextSync(
  1. String text
)
override

Implementation

@override
int compileCsdTextSync(String text) {
  Pointer<Utf8> ptr = StringUtf8Pointer(text).toNativeUtf8();
  int res = csoundCompileCsdText(_csound, ptr);
  malloc.free(ptr);
  return res;
}