compileOrcSync method

  1. @override
int compileOrcSync(
  1. String orc
)
override

Implementation

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