| 316 | {NULL, 0, 0, 0, NULL, NULL, (SUBR)NULL, (SUBR)NULL, (SUBR)NULL}}; |
| 317 | |
| 318 | PUBLIC int csoundModuleCreate_mixer(CSOUND *csound) { |
| 319 | std::map<CSOUND *, std::map<size_t, std::vector<std::vector<MYFLT>>>> |
| 320 | *busses = 0; |
| 321 | busses = |
| 322 | new std::map<CSOUND *, std::map<size_t, std::vector<std::vector<MYFLT>>>>; |
| 323 | csound::CreateGlobalPointer(csound, "busses", busses); |
| 324 | std::map<CSOUND *, std::map<size_t, std::map<size_t, MYFLT>>> *matrix = 0; |
| 325 | matrix = new std::map<CSOUND *, std::map<size_t, std::map<size_t, MYFLT>>>; |
| 326 | csound::CreateGlobalPointer(csound, "matrix", matrix); |
| 327 | return OK; |
| 328 | } |
| 329 | |
| 330 | PUBLIC int csoundModuleInit_mixer(CSOUND *csound) { |
| 331 | OENTRY *ep = (OENTRY *)&(localops[0]); |
no test coverage detected