compileCsdSync method

  1. @override
int compileCsdSync(
  1. String csdPath
)
override

Implementation

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