| 267 | }}; |
| 268 | |
| 269 | PUBLIC int32_t csoundModuleInit_doppler(CSOUND *csound) { |
| 270 | int32_t status = 0; |
| 271 | for (OENTRY *oentry = &oentries[0]; oentry->opname; oentry++) { |
| 272 | status |= csound->AppendOpcode(csound, oentry->opname, oentry->dsblksiz, |
| 273 | oentry->flags, oentry->thread, |
| 274 | oentry->outypes, oentry->intypes, |
| 275 | (int32_t (*)(CSOUND *, void *))oentry->iopadr, |
| 276 | (int32_t (*)(CSOUND *, void *))oentry->kopadr, |
| 277 | (int32_t (*)(CSOUND *, void *))oentry->aopadr); |
| 278 | } |
| 279 | return status; |
| 280 | } |
| 281 | #ifndef INIT_STATIC_MODULES |
| 282 | PUBLIC int32_t csoundModuleCreate(CSOUND *csound) { |
| 283 | IGN(csound); |
no outgoing calls
no test coverage detected