| 190 | } |
| 191 | |
| 192 | ASIOError ASIOGetSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp) |
| 193 | { |
| 194 | if(!theAsioDriver) |
| 195 | return ASE_NotPresent; |
| 196 | return theAsioDriver->getSamplePosition(sPos, tStamp); |
| 197 | } |
| 198 | |
| 199 | ASIOError ASIOGetChannelInfo(ASIOChannelInfo *info) |
| 200 | { |
nothing calls this directly
no test coverage detected