| 368 | } |
| 369 | |
| 370 | void csoundTableCopyOut(CSOUND *csound, int table, MYFLT *ptable){ |
| 371 | |
| 372 | csoundLockMutex(csound->API_lock); |
| 373 | csoundTableCopyOutInternal(csound, table, ptable); |
| 374 | csoundUnlockMutex(csound->API_lock); |
| 375 | } |
| 376 | |
| 377 | void csoundTableCopyIn(CSOUND *csound, int table, MYFLT *ptable){ |
| 378 | csoundLockMutex(csound->API_lock); |
no test coverage detected